/* Final presentation overrides. Loaded after legacy styles. */

.method-detail h3#method-title {
  font-size: 26px;
}

.projects-section .studio-tabs {
  margin-top: 8px;
}

.proposal-section {
  padding-top: 96px;
  padding-bottom: 104px;
  background:
    linear-gradient(rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0.94)),
    radial-gradient(circle at 78% 12%, rgba(114, 184, 232, 0.18), transparent 34%),
    #f7fbff;
}

.proposal-section::before {
  opacity: 0.42;
}

.proposal-section .section-heading {
  width: min(1120px, calc(100% - 56px));
  margin: 0 auto;
  text-align: left;
}

.proposal-section .section-heading h2 {
  max-width: 780px;
  margin: 8px 0 18px;
  color: #102235;
  font-size: 58px;
  line-height: 1.04;
  letter-spacing: -0.024em;
}

.proposal-subtitle {
  display: none;
}

.proposal-section .section-heading p:not(.eyebrow) {
  max-width: 78ch;
  margin-left: 0;
  color: rgba(16, 34, 53, 0.76);
  font-size: 17px;
  line-height: 1.86;
}

.proposal-tabs,
.proposal-stage {
  width: min(1120px, calc(100% - 56px));
}

.proposal-tabs {
  margin-top: 26px;
  margin-bottom: 16px;
}

.proposal-tabs button {
  border-color: rgba(23, 102, 166, 0.18);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: none;
}

.proposal-tabs button.active {
  background: #1766a6;
}

.proposal-screen {
  min-height: auto;
  border: 1px solid rgba(23, 102, 166, 0.16);
  border-radius: 10px;
  padding: 36px 38px 34px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: none;
  backdrop-filter: none;
}

.proposal-screen::after {
  display: none;
}

#proposal-topic.active {
  grid-template-columns: minmax(0, 0.61fr) minmax(300px, 0.39fr);
  gap: 30px 36px;
}

.proposal-topic-main h3 {
  max-width: 650px;
  margin: 16px 0 14px;
  color: #102235;
  font-size: 40px;
  line-height: 1.16;
  letter-spacing: -0.018em;
  text-wrap: balance;
}

.proposal-topic-main p,
.proposal-rq-grid p {
  font-size: 15px;
  line-height: 1.76;
}

.proposal-topic-meta {
  gap: 16px;
  padding-left: 24px;
}

.proposal-topic-meta strong {
  font-size: 18px;
}

.proposal-rq-grid section {
  min-height: auto;
  padding-top: 22px;
}

.proposal-rq-grid strong {
  margin-top: 18px;
  font-size: 21px;
}

.paper-switch-page {
  background:
    linear-gradient(rgba(16, 34, 53, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(16, 34, 53, 0.022) 1px, transparent 1px),
    #f7f9fb;
  background-size: 42px 42px;
}

.paper-switch-main {
  width: min(1320px, calc(100% - 56px));
  display: grid;
  grid-template-columns: 330px minmax(0, 1fr);
  gap: 48px;
  align-items: start;
  padding: 106px 0 72px;
}

.paper-switch-nav {
  position: sticky;
  top: 86px;
  display: grid;
  gap: 8px;
}

.paper-switch-intro {
  border-bottom: 1px solid rgba(23, 102, 166, 0.18);
  padding-bottom: 22px;
  margin-bottom: 8px;
}

.paper-switch-intro span {
  color: #1766a6;
  font-size: 12px;
  font-weight: 820;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.paper-switch-intro h1 {
  margin: 12px 0 10px;
  color: #102235;
  font-size: 44px;
  line-height: 1;
  letter-spacing: -0.025em;
}

.paper-switch-intro p {
  margin: 0;
  color: rgba(16, 34, 53, 0.68);
  line-height: 1.72;
}

.paper-switch-nav button {
  position: relative;
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 10px;
  width: 100%;
  border: 0;
  border-bottom: 1px solid rgba(16, 34, 53, 0.10);
  padding: 14px 0;
  color: rgba(16, 34, 53, 0.72);
  text-align: left;
  cursor: pointer;
  background: transparent;
  transition: color 240ms var(--ease-soft), transform 240ms var(--ease-smooth);
}

.paper-switch-nav button::before {
  content: "";
  position: absolute;
  left: -16px;
  top: 12px;
  bottom: 12px;
  width: 3px;
  border-radius: 999px;
  background: #1766a6;
  opacity: 0;
  transform: scaleY(0.5);
  transition: opacity 240ms var(--ease-soft), transform 240ms var(--ease-smooth);
}

.paper-switch-nav button:hover {
  transform: translateX(2px);
  color: #102235;
}

.paper-switch-nav button.active {
  color: #102235;
}

.paper-switch-nav button.active::before {
  opacity: 1;
  transform: scaleY(1);
}

.paper-switch-nav button span {
  color: #1766a6;
  font-size: 13px;
  font-weight: 820;
}

.paper-switch-nav button strong {
  font-size: 16px;
  line-height: 1.4;
}

.paper-switch-nav button small {
  grid-column: 2;
  color: rgba(16, 34, 53, 0.52);
  font-size: 12px;
}

.paper-switch-stage {
  min-width: 0;
}

.paper-panel {
  display: none;
  padding-bottom: 24px;
}

.paper-panel.active {
  display: block;
  animation: paperPanelIn 460ms var(--ease-smooth) both;
}

@keyframes paperPanelIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.paper-panel-head {
  border-bottom: 1px solid rgba(16, 34, 53, 0.12);
  padding-bottom: 24px;
}

.paper-panel-head > p:first-child {
  margin: 0 0 12px;
  color: #1766a6;
  font-size: 12px;
  font-weight: 820;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.paper-panel-head h2 {
  max-width: 880px;
  margin: 0 0 10px;
  color: #0f2031;
  font-size: 54px;
  line-height: 1.02;
  letter-spacing: -0.026em;
  text-wrap: balance;
}

.paper-panel-head h3 {
  max-width: 86ch;
  margin: 0;
  color: rgba(16, 34, 53, 0.66);
  font-size: 18px;
  line-height: 1.55;
  font-weight: 650;
}

.paper-panel .paper-info {
  margin-top: 18px;
  color: rgba(16, 34, 53, 0.66);
}

.paper-panel .paper-showcase {
  grid-template-columns: minmax(320px, 0.43fr) minmax(0, 0.57fr);
  gap: 32px;
  margin: 28px 0 26px;
}

.paper-panel .paper-figure {
  border-radius: 10px;
  box-shadow: none;
  border-color: rgba(23, 102, 166, 0.18);
}

.paper-panel .paper-figure img {
  height: 430px;
}

.paper-panel .paper-brief {
  border-color: rgba(23, 102, 166, 0.18);
  padding: 26px 0;
}

.paper-data-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid rgba(16, 34, 53, 0.12);
  border-bottom: 1px solid rgba(16, 34, 53, 0.12);
  margin: 28px 0;
}

.paper-data-grid section {
  min-height: 138px;
  border-right: 1px solid rgba(16, 34, 53, 0.10);
  padding: 20px 18px 18px 0;
}

.paper-data-grid section + section {
  padding-left: 18px;
}

.paper-data-grid section:last-child {
  border-right: 0;
}

.paper-data-grid span {
  display: block;
  color: #1766a6;
  font-size: 12px;
  font-weight: 820;
  letter-spacing: 0.08em;
}

.paper-data-grid strong {
  display: block;
  margin-top: 24px;
  color: #102235;
  font-size: 28px;
  line-height: 1.08;
}

.paper-data-grid p {
  margin: 10px 0 0;
  color: rgba(16, 34, 53, 0.66);
  line-height: 1.62;
}

.paper-deep-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid rgba(16, 34, 53, 0.12);
}

.paper-deep-grid section {
  border-right: 1px solid rgba(16, 34, 53, 0.10);
  padding: 24px 24px 0 0;
}

.paper-deep-grid section + section {
  padding-left: 24px;
}

.paper-deep-grid section:last-child {
  border-right: 0;
}

.paper-deep-grid h4 {
  margin: 0 0 14px;
  color: #1766a6;
  font-size: 16px;
}

.paper-deep-grid p {
  margin: 0;
  color: rgba(16, 34, 53, 0.72);
  font-size: 16px;
  line-height: 1.78;
}

@media (prefers-reduced-motion: reduce) {
  .paper-panel.active {
    animation: none;
  }
}

.section-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 24px;
  border: 1px solid rgba(23, 102, 166, 0.28);
  border-radius: 999px;
  padding: 10px 18px;
  color: #1766a6;
  background: rgba(255, 255, 255, 0.74);
  font-weight: 760;
  transition: transform 240ms var(--ease-smooth), background 240ms var(--ease-soft);
}

.section-action:hover {
  transform: translateY(-1px);
  background: #fff;
}

#proposal-foundation.active {
  display: block;
}

.proposal-foundation-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.52fr) minmax(0, 0.48fr);
  gap: 42px;
}

.proposal-foundation-grid section {
  border-top: 1px solid rgba(23, 102, 166, 0.20);
  padding-top: 22px;
}

.proposal-foundation-grid dl {
  display: grid;
  gap: 18px;
  margin: 28px 0 0;
}

.proposal-foundation-grid dt {
  margin: 0;
  color: #102235;
  font-size: 20px;
  font-weight: 780;
  line-height: 1.25;
}

.proposal-foundation-grid dd {
  margin: 6px 0 0;
  color: rgba(16, 34, 53, 0.68);
  font-size: 15px;
  line-height: 1.72;
}

.proposal-foundation-grid ol {
  display: grid;
  gap: 18px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
  counter-reset: contribution;
}

.proposal-foundation-grid li {
  counter-increment: contribution;
  display: block;
  border-bottom: 1px solid rgba(23, 102, 166, 0.12);
  padding: 0 0 18px;
}

.proposal-foundation-grid li::before {
  content: "0" counter(contribution);
  display: block;
  margin-bottom: 8px;
  color: #1766a6;
  font-size: 13px;
  font-weight: 820;
  letter-spacing: 0.08em;
}

.proposal-foundation-grid strong {
  display: block;
  color: #102235;
  font-size: 21px;
  line-height: 1.2;
}

.proposal-foundation-grid p {
  margin: 8px 0 0;
  color: rgba(16, 34, 53, 0.68);
  font-size: 15px;
  line-height: 1.72;
}

.profile-detail-page {
  background:
    linear-gradient(rgba(16, 34, 53, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(16, 34, 53, 0.022) 1px, transparent 1px),
    #f7f9fb;
  background-size: 42px 42px;
}

.profile-detail-main {
  width: min(1240px, calc(100% - 56px));
  margin: 0 auto;
  padding: 112px 0 86px;
}

.profile-detail-hero {
  border-bottom: 1px solid rgba(16, 34, 53, 0.12);
  padding-bottom: 42px;
}

.profile-detail-hero p,
.profile-detail-section > span,
.profile-dark-panel > span {
  margin: 0;
  color: #1766a6;
  font-size: 12px;
  font-weight: 820;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.profile-detail-hero h1 {
  max-width: 920px;
  margin: 14px 0 16px;
  color: #102235;
  font-size: 64px;
  line-height: 1;
  letter-spacing: -0.028em;
}

.profile-detail-hero strong {
  display: block;
  max-width: 78ch;
  color: rgba(16, 34, 53, 0.72);
  font-size: 20px;
  line-height: 1.65;
  font-weight: 560;
}

.profile-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
  margin-top: 36px;
}

.profile-dark-panel,
.profile-detail-section {
  border: 1px solid rgba(23, 102, 166, 0.16);
  border-radius: 12px;
  padding: 30px;
  background: rgba(255, 255, 255, 0.78);
}

.profile-dark-panel {
  color: #fff;
  background: #102235;
}

.profile-dark-panel h2,
.profile-detail-section h2 {
  margin: 16px 0 14px;
  font-size: 34px;
  line-height: 1.12;
  letter-spacing: -0.02em;
}

.profile-dark-panel p,
.profile-detail-section p,
.profile-detail-section dd,
.profile-skill-list {
  color: rgba(16, 34, 53, 0.70);
  line-height: 1.76;
}

.profile-dark-panel p {
  color: rgba(255, 255, 255, 0.72);
}

.profile-metrics {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  margin-top: 28px;
  padding-top: 12px;
}

.profile-metrics section {
  padding: 16px 16px 12px 0;
}

.profile-metrics strong {
  display: block;
  color: #fff;
  font-size: 36px;
}

.profile-metrics span {
  color: rgba(255, 255, 255, 0.66);
}

.profile-detail-section.wide {
  grid-column: 1 / -1;
}

.profile-detail-section dl {
  margin: 22px 0 0;
}

.profile-detail-section dt {
  margin-top: 18px;
  color: #102235;
  font-size: 18px;
  font-weight: 780;
}

.profile-paper-map {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid rgba(16, 34, 53, 0.12);
  border-bottom: 1px solid rgba(16, 34, 53, 0.12);
  margin: 24px 0;
}

.profile-paper-map section {
  border-right: 1px solid rgba(16, 34, 53, 0.10);
  padding: 22px 22px 22px 0;
}

.profile-paper-map section + section {
  padding-left: 22px;
}

.profile-paper-map section:last-child {
  border-right: 0;
}

.profile-paper-map strong {
  color: #102235;
  font-size: 20px;
}

.profile-skill-list {
  display: grid;
  gap: 12px;
  margin: 22px 0 0;
  padding-left: 18px;
}

/* Profile secondary page: doctoral readiness dossier */
.profile-detail-page {
  background:
    radial-gradient(circle at 85% 10%, rgba(117, 180, 239, 0.18), transparent 34%),
    linear-gradient(rgba(16, 34, 53, 0.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(16, 34, 53, 0.020) 1px, transparent 1px),
    #f8fafc;
  background-size: auto, 42px 42px, 42px 42px, auto;
}

.profile-detail-main {
  width: min(1360px, calc(100% - 128px));
  padding: 96px 0 92px;
}

.profile-detail-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 48px;
  align-items: end;
  border-bottom: 0;
  padding: 0 0 34px;
}

.profile-detail-hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, rgba(23, 102, 166, 0.46), rgba(23, 102, 166, 0.10), transparent);
}

.profile-detail-hero h1 {
  max-width: 980px;
  font-size: clamp(54px, 5vw, 86px);
  line-height: 0.98;
  letter-spacing: -0.035em;
  text-wrap: balance;
}

.profile-detail-hero strong {
  max-width: 76ch;
  color: rgba(16, 34, 53, 0.76);
}

.profile-detail-hero::before {
  content: "PhD Application 2027";
  align-self: center;
  justify-self: end;
  width: 280px;
  border: 1px solid rgba(23, 102, 166, 0.18);
  border-radius: 12px;
  padding: 22px 24px;
  color: #0d315c;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.88), rgba(234, 245, 255, 0.72));
  box-shadow: 0 22px 54px rgba(44, 100, 160, 0.09);
  font-size: 22px;
  font-weight: 820;
  line-height: 1.2;
  text-align: right;
}

.profile-detail-grid {
  grid-template-columns: 1.02fr 0.98fr;
  gap: 22px;
  margin-top: 30px;
}

.profile-dark-panel,
.profile-detail-section {
  border-radius: 10px;
  box-shadow: none;
}

.profile-dark-panel {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(420px, 0.88fr);
  gap: 34px;
  align-items: end;
  min-height: 300px;
  border-color: rgba(255, 255, 255, 0.12);
  padding: 38px;
  background:
    linear-gradient(rgba(255, 255, 255, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    radial-gradient(circle at 88% 12%, rgba(89, 166, 235, 0.26), transparent 32%),
    #0e2133;
  background-size: 38px 38px, 38px 38px, auto, auto;
}

.profile-dark-panel > span,
.profile-dark-panel h2,
.profile-dark-panel p {
  grid-column: 1;
}

.profile-dark-panel h2 {
  margin-top: 18px;
  font-size: clamp(40px, 4vw, 70px);
  line-height: 0.96;
}

.profile-dark-panel p {
  max-width: 64ch;
  font-size: 17px;
}

.profile-metrics {
  grid-column: 2;
  grid-row: 1 / span 3;
  align-self: stretch;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin: 0;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.12);
}

.profile-metrics section {
  display: grid;
  align-content: end;
  min-height: 126px;
  padding: 22px;
  background: rgba(255, 255, 255, 0.045);
}

.profile-metrics strong {
  font-size: 42px;
  line-height: 1;
}

.profile-detail-section {
  border-color: rgba(23, 102, 166, 0.14);
  padding: 30px 32px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(250, 253, 255, 0.76));
}

.profile-detail-section h2 {
  max-width: 14ch;
  font-size: clamp(30px, 2.4vw, 42px);
}

.profile-detail-section.wide h2 {
  max-width: none;
}

.profile-detail-section dl {
  display: grid;
  grid-template-columns: 110px minmax(0, 1fr);
  gap: 14px 22px;
}

.profile-detail-section dt {
  margin: 0;
  color: #1766a6;
}

.profile-detail-section dd {
  margin: 0;
}

.profile-paper-map {
  align-items: end;
  gap: 18px;
  border: 0;
  margin: 28px 0 24px;
}

.profile-paper-map section {
  display: grid;
  align-content: end;
  min-height: 230px;
  border: 1px solid rgba(144, 188, 240, 0.54);
  border-radius: 12px;
  padding: 24px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.96), rgba(240,248,255,0.80));
}

.profile-paper-map section:nth-child(2) {
  min-height: 272px;
}

.profile-paper-map section:nth-child(3) {
  min-height: 250px;
}

.profile-paper-map strong {
  font-size: 22px;
  line-height: 1.2;
}

.profile-paper-map p {
  margin-top: 16px;
}

.profile-skill-list {
  padding-left: 0;
  list-style: none;
}

.profile-skill-list li {
  position: relative;
  padding-left: 22px;
}

.profile-skill-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.82em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #2f75d4;
}

.paper-figure figcaption {
  display: none;
}

.paper-switch-intro h1 {
  font-size: 40px;
}

.publication-direction-tags {
  display: grid;
  gap: 8px;
  border-top: 1px solid rgba(23, 102, 166, 0.16);
  margin-top: 18px;
  padding-top: 16px;
}

.publication-direction-tags span {
  border: 1px solid rgba(23, 102, 166, 0.16);
  border-radius: 999px;
  padding: 7px 10px;
  color: #1766a6;
  background: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  font-weight: 760;
}

.paper-section-title {
  margin: 46px 0 18px;
  border-top: 1px solid rgba(16, 34, 53, 0.12);
  padding-top: 24px;
}

.paper-section-title span {
  display: block;
  color: #1766a6;
  font-size: 12px;
  font-weight: 820;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.paper-section-title h4 {
  margin: 10px 0 0;
  color: #102235;
  font-size: 30px;
  line-height: 1.15;
  letter-spacing: -0.018em;
}

.method-flow {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 18px 0 0;
}

.method-flow span {
  min-width: 0;
  max-width: 100%;
  border: 1px solid rgba(23, 102, 166, 0.18);
  border-radius: 999px;
  padding: 8px 11px;
  color: #1766a6;
  background: rgba(255, 255, 255, 0.74);
  font-size: 13px;
  font-weight: 720;
  overflow-wrap: anywhere;
  white-space: normal;
}

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

.evidence-card {
  min-height: 230px;
  border: 1px solid rgba(23, 102, 166, 0.16);
  border-radius: 12px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.76);
}

.evidence-card h5 {
  margin: 0 0 12px;
  color: #102235;
  font-size: 20px;
}

.evidence-card p {
  margin: 14px 0 0;
  color: rgba(16, 34, 53, 0.68);
  line-height: 1.68;
}

.mini-chart-bars {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.mini-chart-bars i {
  display: block;
  height: 12px;
  border-radius: 999px;
  background: linear-gradient(90deg, #1766a6 var(--v), rgba(23, 102, 166, 0.12) var(--v));
}

.matrix-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  margin-top: 18px;
}

.matrix-grid span {
  min-height: 42px;
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(23, 102, 166, 0.14), rgba(23, 102, 166, 0.04));
}

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

.model-ring span {
  display: grid;
  place-items: center;
  min-height: 86px;
  border: 1px solid rgba(23, 102, 166, 0.20);
  border-radius: 50%;
  color: #1766a6;
  font-weight: 820;
  background: rgba(237, 246, 252, 0.90);
}

.service-map,
.value-paths,
.industry-timeline {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.service-map span,
.value-paths span,
.industry-timeline span {
  border-left: 3px solid #1766a6;
  padding: 8px 10px;
  color: #102235;
  background: rgba(237, 246, 252, 0.72);
  font-weight: 720;
}

.translation-matrix {
  width: 100%;
  border-collapse: collapse;
  margin-top: 18px;
  overflow: hidden;
  border-top: 1px solid rgba(16, 34, 53, 0.14);
}

.translation-matrix th,
.translation-matrix td {
  border-bottom: 1px solid rgba(16, 34, 53, 0.10);
  padding: 12px 12px 12px 0;
  color: rgba(16, 34, 53, 0.72);
  text-align: left;
  vertical-align: top;
  line-height: 1.62;
}

.translation-matrix th {
  color: #1766a6;
  font-size: 13px;
  font-weight: 820;
}

/* Final secondary-page presentation polish */
.paper-switch-main {
  grid-template-columns: 300px minmax(0, 1fr);
  gap: 54px;
}

.paper-switch-nav {
  top: 74px;
  max-height: calc(100vh - 94px);
  overflow: auto;
  padding-right: 8px;
}

.paper-switch-intro p,
.publication-direction-tags {
  display: none !important;
}

.paper-switch-intro h1 {
  margin-bottom: 18px;
  font-size: 42px;
}

.paper-panel-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 8px;
  padding-bottom: 22px;
}

.paper-panel-head h2 {
  font-size: clamp(42px, 4vw, 58px);
  max-width: 980px;
}

.paper-panel .paper-showcase {
  align-items: stretch;
  grid-template-columns: minmax(320px, 0.38fr) minmax(0, 0.62fr);
}

.paper-panel .paper-figure {
  display: grid;
  align-content: center;
  background:
    linear-gradient(rgba(23, 102, 166, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(23, 102, 166, 0.035) 1px, transparent 1px),
    #fff;
  background-size: 28px 28px;
}

.paper-panel .paper-figure img {
  height: 400px;
  object-fit: contain;
  padding: 16px;
}

.paper-brief {
  position: relative;
}

.paper-brief::before {
  content: "";
  position: absolute;
  left: -18px;
  top: 28px;
  bottom: 28px;
  width: 1px;
  background: linear-gradient(#1766a6, rgba(23, 102, 166, 0.08));
}

.paper-data-grid {
  border: 0;
  gap: 0;
  background: linear-gradient(90deg, rgba(23, 102, 166, 0.14), transparent);
  padding-top: 1px;
}

.paper-data-grid section {
  border-right: 0;
  border-top: 1px solid rgba(23, 102, 166, 0.16);
  background: rgba(255, 255, 255, 0.54);
}

.paper-section-title {
  border-top: 0;
  margin-top: 52px;
  padding-top: 0;
}

.method-flow {
  counter-reset: method;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(23, 102, 166, 0.16);
  border-radius: 14px;
  background: rgba(23, 102, 166, 0.14);
}

.method-flow span {
  counter-increment: method;
  position: relative;
  border: 0;
  border-radius: 0;
  padding: 18px 18px 18px 48px;
  min-height: 76px;
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.88);
  color: #102235;
  line-height: 1.35;
}

.method-flow span::before {
  content: counter(method, decimal-leading-zero);
  position: absolute;
  left: 16px;
  top: 18px;
  color: #1766a6;
  font-size: 12px;
  font-weight: 840;
}

.paper-evidence-gallery {
  grid-template-columns: 1.05fr 0.95fr;
  gap: 18px;
}

.evidence-card {
  position: relative;
  overflow: hidden;
  min-height: 244px;
  border-color: rgba(23, 102, 166, 0.13);
  background:
    radial-gradient(circle at 94% 8%, rgba(185, 225, 248, 0.42), transparent 28%),
    rgba(255, 255, 255, 0.82);
}

.evidence-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(135deg, rgba(255,255,255,0.32), transparent 42%);
}

.mini-chart-bars {
  position: relative;
  padding: 12px 0 4px;
  background:
    linear-gradient(90deg, rgba(16, 34, 53, 0.07) 1px, transparent 1px) 0 0 / 25% 100%;
}

.mini-chart-bars i {
  position: relative;
  height: 16px;
  border-radius: 3px 999px 999px 3px;
  background:
    linear-gradient(90deg, #1766a6 var(--v), rgba(23, 102, 166, 0.10) var(--v));
}

.mini-chart-bars i::after {
  content: "";
  position: absolute;
  left: var(--v);
  top: 50%;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #1766a6;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 0 4px rgba(23, 102, 166, 0.12);
}

.model-ring {
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
}

.model-ring span {
  width: 86px;
  aspect-ratio: 1 / 1;
  min-height: auto;
  justify-self: center;
  border-radius: 50%;
}

.service-map,
.value-paths,
.industry-timeline {
  position: relative;
  gap: 8px;
}

.service-map span,
.value-paths span,
.industry-timeline span {
  border-left: 0;
  border: 1px solid rgba(23, 102, 166, 0.14);
  border-radius: 999px;
  padding: 9px 12px;
  background: rgba(237, 246, 252, 0.86);
}

.paper-deep-grid {
  counter-reset: paperInsight;
  margin-top: 18px;
  border-top: 0;
  border-radius: 14px;
  overflow: hidden;
  background: rgba(23, 102, 166, 0.12);
  gap: 1px;
}

.paper-deep-grid section {
  counter-increment: paperInsight;
  position: relative;
  border-right: 0;
  padding: 24px 24px 26px;
  background: rgba(255, 255, 255, 0.82);
}

.paper-deep-grid section::before {
  content: counter(paperInsight, decimal-leading-zero);
  display: block;
  margin-bottom: 18px;
  color: #1766a6;
  font-size: 13px;
  font-weight: 860;
}

.paper-deep-grid section + section {
  padding-left: 24px;
}

.paper-deep-grid h4 {
  font-size: 22px;
}

/* Final 06 research proposal redraw */
.proposal-section {
  position: relative;
  min-height: auto;
  overflow: hidden;
  background:
    linear-gradient(rgba(23, 102, 166, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(23, 102, 166, 0.045) 1px, transparent 1px),
    radial-gradient(circle at 16% 12%, rgba(185, 225, 248, 0.72), transparent 32%),
    linear-gradient(180deg, #f7fafc 0%, #eef7fd 56%, #f8fbfd 100%);
  background-size: 48px 48px, 48px 48px, auto, auto;
}

.proposal-section::before,
.proposal-section::after {
  content: "";
  position: absolute;
  pointer-events: none;
  opacity: 0.72;
}

.proposal-section::before {
  inset: 0;
  background: linear-gradient(90deg, rgba(247, 250, 252, 0.92), transparent 18%, transparent 82%, rgba(247, 250, 252, 0.94));
}

.proposal-section::after {
  top: 84px;
  right: 7vw;
  width: 420px;
  height: 420px;
  border: 1px solid rgba(23, 102, 166, 0.08);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.46), transparent 62%);
}

.proposal-shell {
  position: relative;
  z-index: 1;
  width: min(1440px, calc(100% - 80px));
  margin: 0 auto;
  padding: 96px 0 120px;
}

.proposal-header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 56px;
  align-items: end;
}

.proposal-header-copy {
  max-width: 940px;
}

.proposal-kicker,
.proposal-panel-label,
.proposal-screen-head > span,
.proposal-position-card > span,
.scene-method-row span,
.phase-card dt {
  display: block;
  color: #1677b8;
  font-size: 13px;
  font-weight: 780;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.proposal-header h2 {
  margin: 16px 0 10px;
  color: #102033;
  font-size: clamp(54px, 5.5vw, 78px);
  line-height: 1.02;
  letter-spacing: -0.035em;
  text-wrap: balance;
}

.proposal-header h3 {
  margin: 0;
  color: rgba(16, 32, 51, 0.86);
  font-size: 25px;
  line-height: 1.35;
  font-weight: 720;
}

.proposal-header p {
  max-width: 900px;
  margin: 24px 0 0;
  color: #425669;
  font-size: 17px;
  line-height: 1.9;
  text-wrap: pretty;
}

.proposal-position-card {
  position: relative;
  border: 1px solid rgba(110, 184, 232, 0.42);
  border-radius: 16px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 8px 24px rgba(22, 119, 184, 0.08);
  backdrop-filter: blur(10px);
}

.proposal-position-card::before,
.proposal-topic-card::before,
.phase-card::before,
.contribution-grid section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 18px;
  right: 18px;
  height: 3px;
  border-radius: 0 0 99px 99px;
  background: linear-gradient(90deg, #1677b8, rgba(185, 225, 248, 0.42));
}

.proposal-position-card strong {
  display: block;
  margin-top: 14px;
  color: #102033;
  font-size: 28px;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.proposal-keywords {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 22px;
}

.proposal-keywords i,
.proposal-method-tags i,
.phase-card dd i {
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(22, 119, 184, 0.18);
  border-radius: 999px;
  padding: 7px 10px;
  color: #0f5f99;
  background: rgba(238, 247, 253, 0.9);
  font-size: 13px;
  font-style: normal;
  font-weight: 720;
  line-height: 1;
}

.proposal-tabs {
  display: flex;
  gap: 12px;
  margin: 40px 0 24px;
}

.proposal-tabs button {
  border: 1px solid rgba(110, 184, 232, 0.55);
  border-radius: 999px;
  padding: 11px 18px;
  color: #4b6071;
  background: rgba(255, 255, 255, 0.78);
  font-size: 15px;
  font-weight: 720;
  cursor: pointer;
  transition: color 0.28s ease, background 0.28s ease, border-color 0.28s ease, transform 0.28s ease;
}

.proposal-tabs button:hover {
  border-color: #9acbed;
  color: #0f5f99;
  transform: translateY(-1px);
}

.proposal-tabs button.active {
  border-color: #1677b8;
  color: #fff;
  background: #1677b8;
}

.proposal-stage {
  position: relative;
}

.proposal-screen {
  display: none;
  border: 1px solid rgba(216, 230, 239, 0.92);
  border-radius: 18px;
  padding: 0;
  background: rgba(255, 255, 255, 0.58);
  box-shadow: none;
  transform: none !important;
}

.proposal-screen.active {
  display: block;
  animation: proposalPanelIn 0.42s cubic-bezier(0.22, 1, 0.36, 1);
}

.proposal-topic-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.54fr) minmax(460px, 0.46fr);
  gap: 34px;
  align-items: center;
  border: 1px solid rgba(216, 230, 239, 0.95);
  border-radius: 16px 16px 0 0;
  padding: 42px 38px 34px;
  background: rgba(255, 255, 255, 0.82);
}

.proposal-topic-copy h3 {
  margin: 18px 0;
  color: #102033;
  font-size: clamp(34px, 3.2vw, 52px);
  line-height: 1.08;
  letter-spacing: -0.032em;
  text-wrap: balance;
}

.proposal-topic-copy h3 b {
  display: block;
  font-weight: 820;
}

.proposal-topic-copy p,
.proposal-screen-head p,
.scene-method-row p,
.rq-chain p,
.phase-card dd,
.foundation-matrix p,
.contribution-grid p,
.extension-card p {
  color: #526778;
  font-size: 16px;
  line-height: 1.72;
  text-wrap: pretty;
}

.proposal-note {
  margin-top: 24px;
  border-left: 3px solid #1677b8;
  border-radius: 12px;
  padding: 16px 18px;
  color: #294e6a;
  background: linear-gradient(90deg, rgba(238, 247, 253, 0.96), rgba(255, 255, 255, 0.72));
  font-size: 16px;
  line-height: 1.72;
}

.system-map {
  position: relative;
  min-height: 390px;
  border-radius: 16px;
  background:
    radial-gradient(circle at center, rgba(22, 119, 184, 0.12), transparent 46%),
    linear-gradient(135deg, rgba(238, 247, 253, 0.95), rgba(255, 255, 255, 0.76));
}

.system-map-lines {
  position: absolute;
  inset: 58px;
  border: 1px solid rgba(22, 119, 184, 0.18);
  border-radius: 50%;
}

.system-map-lines::before,
.system-map-lines::after {
  content: "";
  position: absolute;
  inset: 50%;
  width: 260px;
  height: 1px;
  background: rgba(22, 119, 184, 0.16);
  transform-origin: 0 0;
}

.system-map-lines::before {
  transform: rotate(24deg) translateX(-130px);
}

.system-map-lines::after {
  transform: rotate(-54deg) translateX(-130px);
}

.system-core {
  position: absolute;
  left: 50%;
  top: 50%;
  display: grid;
  place-items: center;
  width: 126px;
  height: 126px;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(145deg, #1677b8, #0f5f99);
  box-shadow: 0 12px 28px rgba(22, 119, 184, 0.22);
  font-size: 18px;
  font-weight: 820;
  line-height: 1.25;
  text-align: center;
  transform: translate(-50%, -50%);
}

.system-node {
  position: absolute;
  width: 190px;
  border: 1px solid rgba(22, 119, 184, 0.18);
  border-radius: 14px;
  padding: 12px 13px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 6px 16px rgba(22, 119, 184, 0.08);
}

.system-node span {
  color: #1677b8;
  font-size: 12px;
  font-weight: 820;
}

.system-node strong {
  display: block;
  margin-top: 3px;
  color: #102033;
  font-size: 15px;
  font-weight: 800;
}

.system-node p {
  margin: 5px 0 0;
  color: #5f6e7d;
  font-size: 12px;
  line-height: 1.42;
}

.node-a { left: 50%; top: 14px; transform: translateX(-50%); }
.node-b { right: 12px; top: 104px; }
.node-c { right: 36px; bottom: 28px; }
.node-d { left: 36px; bottom: 28px; }
.node-e { left: 12px; top: 104px; }

.scene-method-row {
  display: grid;
  grid-template-columns: 1fr 1.2fr 1.2fr;
  border-left: 1px solid rgba(216, 230, 239, 0.95);
  border-right: 1px solid rgba(216, 230, 239, 0.95);
  background: rgba(247, 250, 252, 0.74);
}

.scene-method-row section {
  min-height: 148px;
  border-right: 1px solid rgba(216, 230, 239, 0.95);
  padding: 25px 28px;
}

.scene-method-row section:last-child {
  border-right: 0;
}

.scene-method-row strong {
  display: block;
  margin-top: 10px;
  color: #102033;
  font-size: 22px;
  letter-spacing: -0.012em;
}

.proposal-method-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 14px;
}

.rq-chain-wrap {
  border: 1px solid rgba(216, 230, 239, 0.95);
  border-top: 0;
  border-radius: 0 0 16px 16px;
  padding: 34px 38px 38px;
  background: rgba(255, 255, 255, 0.84);
}

.proposal-screen-head {
  max-width: 980px;
}

.proposal-screen-head h3 {
  margin: 10px 0 0;
  color: #102033;
  font-size: 31px;
  line-height: 1.2;
  letter-spacing: -0.022em;
}

.rq-chain {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 34px minmax(0, 1fr) 34px minmax(0, 1fr);
  gap: 12px;
  align-items: stretch;
  margin-top: 24px;
}

.rq-chain section {
  border: 1px solid rgba(110, 184, 232, 0.34);
  border-radius: 14px;
  padding: 22px;
  background: linear-gradient(180deg, rgba(238, 247, 253, 0.82), rgba(255, 255, 255, 0.9));
  transition: border-color 0.25s ease, transform 0.25s ease;
}

.rq-chain section:hover,
.phase-card:hover,
.contribution-grid section:hover {
  border-color: #9acbed;
  transform: translateY(-2px);
}

.rq-chain span,
.phase-card > span,
.contribution-grid span {
  color: #1677b8;
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0.08em;
}

.rq-chain strong {
  display: block;
  margin-top: 10px;
  color: #102033;
  font-size: 23px;
  line-height: 1.25;
}

.rq-chain small {
  display: block;
  margin-top: 14px;
  border-top: 1px solid rgba(22, 119, 184, 0.13);
  padding-top: 12px;
  color: #0f5f99;
  font-size: 14px;
  line-height: 1.5;
  font-weight: 720;
}

.rq-chain > i {
  display: grid;
  place-items: center;
  color: #1677b8;
  font-size: 27px;
  font-style: normal;
  font-weight: 500;
}

#proposal-framework,
#proposal-foundation {
  padding: 38px;
}

.framework-stage-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 28px;
}

.phase-card {
  position: relative;
  border: 1px solid rgba(216, 230, 239, 0.95);
  border-radius: 16px;
  padding: 26px 22px 24px;
  background: rgba(255, 255, 255, 0.82);
  transition: border-color 0.25s ease, transform 0.25s ease;
}

.phase-card + .phase-card::after {
  content: "→";
  position: absolute;
  left: -22px;
  top: 34px;
  color: #1677b8;
  font-size: 22px;
}

.phase-card h4,
.contribution-grid h4 {
  margin: 12px 0 18px;
  color: #102033;
  font-size: 25px;
  line-height: 1.18;
  letter-spacing: -0.018em;
}

.phase-card dl {
  display: grid;
  gap: 12px;
  margin: 0;
}

.phase-card dt {
  margin: 0 0 -6px;
  color: #0f5f99;
  font-size: 12px;
}

.phase-card dd {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin: 0;
}

.phase-card dd:not(:has(i)) {
  display: block;
}

.research-loop,
.extension-card {
  margin-top: 22px;
  border: 1px solid rgba(110, 184, 232, 0.34);
  border-radius: 16px;
  padding: 24px 28px;
  background: linear-gradient(90deg, rgba(238, 247, 253, 0.96), rgba(255, 255, 255, 0.76));
}

.research-loop strong,
.extension-card strong {
  display: block;
  color: #102033;
  font-size: 22px;
  line-height: 1.35;
}

.research-loop p,
.extension-card p {
  margin: 10px 0 0;
}

.foundation-matrix {
  margin-top: 28px;
  border: 1px solid rgba(216, 230, 239, 0.95);
  border-radius: 16px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.8);
}

.foundation-matrix > div {
  display: grid;
  grid-template-columns: 0.9fr 1.35fr 1.35fr;
}

.foundation-matrix > div > * {
  margin: 0;
  border-right: 1px solid rgba(216, 230, 239, 0.95);
  border-bottom: 1px solid rgba(216, 230, 239, 0.95);
  padding: 18px 20px;
}

.foundation-matrix > div > *:last-child {
  border-right: 0;
}

.foundation-matrix > div:last-child > * {
  border-bottom: 0;
}

.foundation-matrix .matrix-head span {
  color: #0f5f99;
  background: rgba(238, 247, 253, 0.92);
  font-size: 14px;
  font-weight: 820;
}

.foundation-matrix strong {
  color: #102033;
  font-size: 19px;
  line-height: 1.35;
}

.foundation-matrix p {
  font-size: 15px;
}

.contribution-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 22px;
}

.contribution-grid section {
  position: relative;
  border: 1px solid rgba(216, 230, 239, 0.95);
  border-radius: 16px;
  padding: 26px 24px 24px;
  background: rgba(255, 255, 255, 0.84);
  transition: border-color 0.25s ease, transform 0.25s ease;
}

.contribution-grid small {
  display: block;
  margin-top: 16px;
  border-top: 1px solid rgba(22, 119, 184, 0.14);
  padding-top: 13px;
  color: #0f5f99;
  font-size: 14px;
  line-height: 1.55;
  font-weight: 720;
}

@keyframes proposalPanelIn {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1180px) {
  .proposal-shell {
    width: min(1120px, calc(100% - 56px));
  }

  .proposal-header,
  .proposal-topic-card {
    grid-template-columns: 1fr;
  }

  .proposal-position-card {
    max-width: 640px;
  }

  .system-map {
    min-height: 420px;
  }

  .scene-method-row,
  .framework-stage-grid,
  .contribution-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .rq-chain {
    grid-template-columns: 1fr;
  }

  .rq-chain > i {
    min-height: 18px;
    transform: rotate(90deg);
  }

  .phase-card + .phase-card::after {
    display: none;
  }
}

/* Review polish: compact undergraduate section and proposal topic typography */
.undergraduate-foundation {
  padding: clamp(62px, 5.4vw, 86px) 0 clamp(68px, 5.8vw, 94px) !important;
}

.foundation-header {
  margin-bottom: 48px;
}

.foundation-kicker {
  margin-bottom: 20px;
  font-size: 16px;
}

.foundation-header h2 {
  font-size: clamp(46px, 3.8vw, 64px);
  line-height: 1.04;
  letter-spacing: -0.038em;
}

.foundation-header p:not(.foundation-kicker) {
  margin-top: 18px;
  font-size: 16px;
  line-height: 1.72;
}

.foundation-header blockquote {
  margin-top: 48px;
  padding: 0 30px;
  font-size: 22px;
  line-height: 1.75;
}

.foundation-path-wrap {
  min-height: 1540px;
}

.foundation-card {
  padding: 32px 36px 22px;
}

.foundation-card::before {
  width: 112px;
  height: 24px;
}

.foundation-num {
  font-size: 40px;
}

.foundation-card h3 {
  margin-top: 10px;
  font-size: 31px;
  letter-spacing: -0.03em;
}

.foundation-subtitle {
  margin-bottom: 18px;
  font-size: 16px;
}

.foundation-card p:not(.foundation-subtitle):not(.foundation-note),
.foundation-card li {
  font-size: 14.5px;
}

.foundation-card ul {
  gap: 8px;
  margin-top: 18px;
}

.foundation-tags {
  gap: 8px;
  margin-top: 18px;
}

.foundation-tags span {
  padding: 7px 13px;
  font-size: 13px;
}

.foundation-note {
  margin-top: 15px;
  padding: 12px 16px 12px 42px;
  font-size: 13.5px;
}

.foundation-card-02 {
  margin-top: -90px;
}

.foundation-card-03 {
  margin-top: -72px;
}

.foundation-card-04 {
  margin-top: -70px;
}

.foundation-summary {
  grid-template-columns: 128px minmax(0, 1fr) 500px;
  gap: 30px;
  margin-top: 54px;
  padding: 30px 38px;
}

.summary-mark {
  justify-self: center;
  align-self: center;
}

.summary-mark span {
  transform: translateY(-12px) skewY(-22deg);
}

.summary-copy h3 {
  font-size: 31px;
}

.summary-copy p {
  font-size: 15.5px;
  line-height: 1.68;
}

.summary-abilities {
  gap: 14px;
}

.summary-abilities span {
  min-height: 58px;
  font-size: 17px;
}

.proposal-topic-copy h3 {
  font-size: 50px !important;
  max-width: 9.6em;
  line-height: 1.05;
}

@media (prefers-reduced-motion: reduce) {
  .proposal-screen.active {
    animation: none;
  }

  .proposal-tabs button,
  .rq-chain section,
  .phase-card,
  .contribution-grid section {
    transition: none;
  }
}

/* Compact 06 spacing after visual review */
.proposal-section {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

.proposal-shell {
  padding: 44px 0 46px;
}

.proposal-header {
  gap: 42px;
}

.proposal-header h2 {
  margin-top: 10px;
  margin-bottom: 8px;
}

.proposal-header p {
  margin-top: 18px;
}

.proposal-tabs {
  margin: 28px 0 18px;
}

.proposal-topic-card {
  padding-top: 34px;
  padding-bottom: 28px;
}

#proposal-framework,
#proposal-foundation {
  padding: 32px;
}

.proposal-stage {
  margin-bottom: 0;
}

.proposal-screen {
  margin-bottom: 0;
}

/* Research path final redraw */
.research-section {
  padding: 86px 0 64px !important;
  color: #f7fbff;
  background:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    radial-gradient(circle at 78% 20%, rgba(23, 102, 166, 0.22), transparent 34%),
    #0b0f0e !important;
  background-size: 48px 48px, 48px 48px, auto, auto !important;
}

.research-section .section-heading {
  width: min(1440px, calc(100% - 84px));
  margin: 0 auto 30px;
}

.research-section .section-heading .eyebrow {
  color: #9fd3f7;
}

.research-section .section-heading h2 {
  max-width: 980px;
  margin: 12px 0 14px;
  color: #fff;
  font-size: clamp(56px, 6.2vw, 92px);
  line-height: 0.98;
  letter-spacing: -0.036em;
  text-wrap: balance;
}

.research-section .section-heading p:not(.eyebrow) {
  max-width: 860px;
  margin: 0;
  color: rgba(247, 251, 255, 0.68);
  font-size: 18px;
  line-height: 1.72;
}

.cockpit {
  width: min(1440px, calc(100% - 84px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.55fr) minmax(420px, 0.45fr);
  gap: 24px;
  align-items: stretch;
}

.research-cards {
  display: grid;
  gap: 14px;
}

.research-card {
  min-height: 142px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 14px;
  padding: 24px 26px;
  background:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    rgba(255, 255, 255, 0.055);
  background-size: 32px 32px;
  transition: border-color 0.24s ease, background 0.24s ease, transform 0.24s ease;
}

.research-card.active,
.research-card:hover {
  border-color: rgba(55, 155, 229, 0.82);
  background:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    rgba(23, 102, 166, 0.28);
  transform: translateY(-1px);
}

.research-card span {
  color: #9fd3f7;
  font-size: 13px;
  font-weight: 820;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.research-card h3 {
  margin: 18px 0 8px;
  color: #fff;
  font-size: 34px;
  line-height: 1.12;
  letter-spacing: -0.026em;
}

.research-card p {
  max-width: 660px;
  margin: 0;
  color: rgba(247, 251, 255, 0.68);
  font-size: 16px;
  line-height: 1.62;
}

.cockpit-panel {
  display: flex;
  flex-direction: column;
  min-height: auto;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 14px;
  padding: 44px 38px 34px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.045));
}

.cockpit-panel .panel-kicker {
  color: #9fd3f7;
  font-size: 13px;
  font-weight: 820;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.cockpit-panel h3 {
  margin: 18px 0 16px;
  color: #fff;
  font-size: 40px;
  line-height: 1.12;
  letter-spacing: -0.028em;
}

.cockpit-panel p {
  color: rgba(247, 251, 255, 0.72);
  font-size: 17px;
  line-height: 1.78;
}

.cockpit-panel small {
  display: block;
  margin-top: auto;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 18px;
  color: rgba(159, 211, 247, 0.92);
  font-size: 15px;
  line-height: 1.62;
}

.method-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin: 22px 0 26px;
}

.method-pills span {
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  padding: 8px 12px;
  color: rgba(247, 251, 255, 0.86);
  background: rgba(255, 255, 255, 0.055);
  font-size: 13px;
}

.method-lab.research-chain {
  position: relative;
  width: min(1440px, calc(100% - 84px));
  margin: 18px auto 0;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0;
  border: 1px solid rgba(255, 255, 255, 0.20);
  border-radius: 14px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.055);
}

.method-lab.research-chain::before {
  content: "";
  position: absolute;
  left: 7%;
  right: 7%;
  top: 34px;
  height: 1px;
  background: linear-gradient(90deg, rgba(159, 211, 247, 0.14), rgba(159, 211, 247, 0.58), rgba(159, 211, 247, 0.14));
}

.research-chain .method-card {
  position: relative;
  min-height: 210px;
  border: 0;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 0;
  padding: 24px 22px 22px;
  background: transparent;
}

.research-chain .method-card:last-child {
  border-right: 0;
}

.research-chain .method-card::after {
  content: "→";
  position: absolute;
  right: -11px;
  top: 23px;
  z-index: 2;
  width: 22px;
  color: #9fd3f7;
  text-align: center;
}

.research-chain .method-card:last-child::after {
  display: none;
}

.research-chain .method-card.active,
.research-chain .method-card:hover {
  background: rgba(255, 255, 255, 0.08);
}

.research-chain .method-card:last-child {
  box-shadow: inset 0 0 0 1px rgba(55, 155, 229, 0.64);
  background: rgba(23, 102, 166, 0.18);
}

.research-chain .method-card span {
  color: #9fd3f7;
  font-size: 13px;
  font-weight: 840;
}

.research-chain .method-card h3 {
  margin: 34px 0 10px;
  color: #fff;
  font-size: 24px;
  line-height: 1.18;
}

.research-chain .method-card p {
  margin: 0;
  color: rgba(247, 251, 255, 0.70);
  font-size: 14px;
  line-height: 1.62;
}

.research-chain .method-card small {
  display: block;
  margin-top: 14px;
  color: rgba(159, 211, 247, 0.88);
  font-size: 12px;
  line-height: 1.52;
}

.research-summary {
  width: min(1440px, calc(100% - 84px));
  margin: 16px auto 0;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  padding: 13px 22px;
  color: rgba(247, 251, 255, 0.72);
  background: rgba(255, 255, 255, 0.055);
  font-size: 14px;
  line-height: 1.6;
  text-align: center;
}

/* Proposal topic refinements from browser comments */
.proposal-topic-copy .proposal-note {
  font-size: 15px;
}

.proposal-topic-card {
  grid-template-columns: minmax(300px, 0.34fr) minmax(0, 0.66fr);
  gap: 20px;
}

.proposal-topic-card .system-map {
  min-height: 430px;
  margin-right: -16px;
}

.proposal-topic-copy h3 {
  font-size: clamp(31px, 2.7vw, 46px);
}

.rq-chain {
  align-items: stretch;
}

.rq-chain section {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.rq-chain section small {
  margin-top: auto;
}

/* Research path small fixes from browser review */
.research-card.active,
.research-card:hover {
  border-color: rgba(255, 255, 255, 0.26);
  background:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    rgba(255, 255, 255, 0.075);
}

.method-lab.research-chain::before,
.research-chain .method-card::before {
  display: none !important;
  content: none !important;
}

.research-chain .method-card.active,
.research-chain .method-card:hover {
  background: rgba(255, 255, 255, 0.065);
}

.research-summary {
  display: none !important;
}

.research-chain .method-card:last-child {
  box-shadow: none !important;
  background: transparent !important;
}

.research-chain .method-card:last-child.active {
  box-shadow: none !important;
  background: transparent !important;
}

.research-chain .method-card:last-child:hover {
  background: rgba(255, 255, 255, 0.065) !important;
}

.projects-section .section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 24px;
}

.projects-section .section-heading .eyebrow,
.projects-section .section-heading h2 {
  grid-column: 1;
}

.project-overview-link {
  grid-column: 2;
  grid-row: 1 / span 2;
  align-self: end;
  border: 1px solid rgba(23, 102, 166, 0.18);
  border-radius: 999px;
  padding: 11px 18px;
  color: #1766a6;
  background: rgba(255, 255, 255, 0.82);
  font-size: 14px;
  font-weight: 760;
  text-decoration: none;
  transition: background 0.22s ease, color 0.22s ease, border-color 0.22s ease;
}

.project-overview-link:hover {
  border-color: #1766a6;
  color: #fff;
  background: #1766a6;
}

/* Unified project process page */
.project-process-page {
  background:
    linear-gradient(rgba(23, 102, 166, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(23, 102, 166, 0.045) 1px, transparent 1px),
    radial-gradient(circle at 14% 8%, rgba(185, 225, 248, 0.68), transparent 30%),
    #f7fafc;
  background-size: 48px 48px, 48px 48px, auto, auto;
  color: #102033;
}

.project-process-main {
  width: min(1440px, calc(100% - 72px));
  margin: 0 auto;
  padding: 92px 0 110px;
  display: grid;
  grid-template-columns: 320px minmax(0, 1fr);
  gap: 34px;
}

.project-process-nav {
  position: sticky;
  top: 92px;
  align-self: start;
}

.project-process-intro {
  margin-bottom: 18px;
}

.project-process-intro span,
.project-panel-head > p,
.process-block > span {
  display: block;
  color: #1677b8;
  font-size: 13px;
  font-weight: 820;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.project-process-intro h1 {
  margin: 12px 0 14px;
  color: #102033;
  font-size: 44px;
  line-height: 1.05;
  letter-spacing: -0.035em;
}

.project-process-intro p {
  color: #5f6e7d;
  font-size: 15px;
  line-height: 1.7;
}

.project-process-nav button {
  width: 100%;
  margin: 0 0 12px;
  border: 1px solid rgba(216, 230, 239, 0.95);
  border-radius: 14px;
  padding: 18px;
  text-align: left;
  background: rgba(255, 255, 255, 0.82);
  cursor: pointer;
  transition: border-color 0.22s ease, background 0.22s ease, transform 0.22s ease;
}

.project-process-nav button.active,
.project-process-nav button:hover {
  border-color: rgba(23, 102, 166, 0.42);
  background: rgba(238, 247, 253, 0.95);
  transform: translateY(-1px);
}

.project-process-nav button span {
  color: #1677b8;
  font-size: 12px;
  font-weight: 820;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.project-process-nav button strong {
  display: block;
  margin: 9px 0;
  color: #102033;
  font-size: 18px;
  line-height: 1.35;
}

.project-process-nav button small {
  display: block;
  color: #5f6e7d;
  font-size: 13px;
  line-height: 1.55;
}

.project-process-nav button em,
.project-process-tags span {
  display: inline-flex;
  margin: 10px 6px 0 0;
  border: 1px solid rgba(23, 102, 166, 0.16);
  border-radius: 999px;
  padding: 6px 9px;
  color: #0f5f99;
  background: rgba(255, 255, 255, 0.75);
  font-size: 12px;
  font-style: normal;
  font-weight: 720;
}

.project-panel {
  display: none;
}

.project-panel.active {
  display: block;
  animation: proposalPanelIn 0.36s cubic-bezier(0.22, 1, 0.36, 1);
}

.project-panel-head,
.process-block {
  border: 1px solid rgba(216, 230, 239, 0.95);
  border-radius: 16px;
  padding: 28px;
  background: rgba(255, 255, 255, 0.86);
}

.project-panel-head {
  padding: 34px;
  border-bottom-right-radius: 4px;
}

.project-panel-head h2 {
  max-width: 820px;
  margin: 14px 0 10px;
  color: #102033;
  font-size: 50px;
  line-height: 1.08;
  letter-spacing: -0.035em;
}

.project-panel-head h3 {
  margin: 0 0 16px;
  color: #425669;
  font-size: 22px;
  font-weight: 720;
}

.project-lead,
.process-block p,
.process-table td,
.process-table th {
  color: #5f6e7d;
  font-size: 16px;
  line-height: 1.78;
}

.process-block {
  margin-top: 18px;
}

.project-storyline {
  margin-top: 18px;
  padding: 0;
}

.project-storyline > span {
  display: block;
  margin: 0 0 12px;
  color: #1677b8;
  font-size: 13px;
  font-weight: 820;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.project-storyline ol {
  counter-reset: projectStep;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin: 0;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(23, 102, 166, 0.16);
  border-radius: 16px;
  background: rgba(23, 102, 166, 0.16);
}

.project-storyline,
.project-storyline * {
  box-sizing: border-box;
}

.project-storyline li {
  counter-increment: projectStep;
  position: relative;
  display: grid;
  gap: 10px;
  min-width: 0;
  min-height: 156px;
  overflow: hidden;
  padding: 24px 17px;
  list-style: none;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.92), rgba(242,248,252,0.82));
}

.project-storyline li::before {
  content: counter(projectStep, decimal-leading-zero);
  color: #1677b8;
  font-size: 13px;
  font-weight: 860;
}

.project-storyline li:not(:last-child)::after {
  content: "";
  position: absolute;
  right: -4px;
  top: 50%;
  z-index: 2;
  width: 10px;
  height: 10px;
  border-top: 1px solid rgba(23, 102, 166, 0.36);
  border-right: 1px solid rgba(23, 102, 166, 0.36);
  background: rgba(248, 252, 255, 0.96);
  transform: translateY(-50%) rotate(45deg);
}

.project-storyline b {
  color: #102033;
  font-size: 21px;
  line-height: 1.16;
}

.project-storyline small {
  color: #5f6e7d;
  font-size: 14px;
  line-height: 1.64;
}

.process-block {
  border-radius: 12px;
  border-color: rgba(23, 102, 166, 0.12);
  box-shadow: none;
}

.process-block > span {
  margin-bottom: 14px;
}

.process-block:has(.process-flow) {
  background:
    linear-gradient(rgba(23, 102, 166, 0.036) 1px, transparent 1px),
    linear-gradient(90deg, rgba(23, 102, 166, 0.032) 1px, transparent 1px),
    rgba(255, 255, 255, 0.86);
  background-size: 32px 32px;
}

.question-grid,
.capability-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
}

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

.question-grid section,
.capability-grid section {
  border: 1px solid rgba(23, 102, 166, 0.13);
  border-radius: 12px;
  padding: 18px;
  background: rgba(238, 247, 253, 0.56);
}

.question-grid strong,
.capability-grid strong {
  display: block;
  color: #102033;
  font-size: 20px;
  line-height: 1.3;
}

.process-flow {
  counter-reset: projectFlow;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-top: 18px;
}

.process-flow i {
  counter-increment: projectFlow;
  position: relative;
  min-height: 82px;
  border: 1px solid rgba(23, 102, 166, 0.14);
  border-radius: 10px;
  padding: 28px 12px 12px;
  color: #102033;
  background: rgba(255, 255, 255, 0.76);
  font-style: normal;
  font-size: 14px;
  font-weight: 720;
}

.process-flow i::before {
  content: counter(projectFlow, decimal-leading-zero);
  position: absolute;
  left: 12px;
  top: 10px;
  color: #1677b8;
  font-size: 11px;
  font-weight: 860;
}

.evidence-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 16px;
  margin-top: 18px;
}

.evidence-grid figure {
  margin: 0;
  border: 1px solid rgba(216, 230, 239, 0.95);
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
}

.project-process-page .evidence-grid figure:first-child {
  grid-row: span 2;
}

.evidence-grid img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.project-process-page .evidence-grid figure:first-child img {
  height: 100%;
  aspect-ratio: auto;
}

.evidence-grid figcaption {
  padding: 13px 15px 15px;
  color: #6a7783;
  font-size: 13px;
  line-height: 1.6;
}

.evidence-grid figcaption b {
  display: block;
  color: #102033;
  font-size: 15px;
}

.process-table {
  width: 100%;
  margin-top: 18px;
  border-collapse: collapse;
}

.process-table th,
.process-table td {
  border-bottom: 1px solid rgba(16, 32, 51, 0.10);
  padding: 14px 12px 14px 0;
  text-align: left;
  vertical-align: top;
}

.process-table th {
  color: #1677b8;
  font-size: 13px;
  font-weight: 820;
  letter-spacing: 0.04em;
}

.related-block {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 92% 20%, rgba(185, 225, 248, 0.46), transparent 32%),
    linear-gradient(90deg, rgba(238, 247, 253, 0.94), rgba(255, 255, 255, 0.86));
}

.capability-grid section,
.question-grid section {
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.64);
}

.process-table {
  border-top: 1px solid rgba(16, 32, 51, 0.10);
}

/* Final presentation polish from browser review */
.hero {
  overflow: hidden;
  background:
    radial-gradient(circle at 72% 10%, rgba(138, 190, 229, 0.26), transparent 30%),
    linear-gradient(120deg, #071829 0%, #0e314c 48%, #09233a 100%);
}

.hero-wall {
  display: none;
}

.hero::after {
  background:
    radial-gradient(circle at 76% 14%, rgba(150, 205, 244, 0.20), transparent 30%),
    radial-gradient(circle at 28% 72%, rgba(42, 132, 201, 0.18), transparent 34%),
    linear-gradient(90deg, rgba(4, 13, 22, 0.88), rgba(8, 32, 52, 0.58) 48%, rgba(6, 22, 38, 0.74)),
    linear-gradient(180deg, rgba(3, 12, 20, 0.18), rgba(5, 16, 26, 0.66));
}

.hero-rays {
  position: absolute;
  inset: 68px 0 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
  mix-blend-mode: screen;
  opacity: 0.52;
}

.hero-rays::before,
.hero-rays::after,
.hero-rays span {
  content: "";
  position: absolute;
  right: -18vw;
  top: -22vh;
  width: 86vw;
  height: 86vh;
  transform-origin: 90% 8%;
  border-radius: 50%;
  background:
    conic-gradient(from 215deg at 80% 10%,
      transparent 0deg,
      rgba(150, 200, 255, 0.00) 16deg,
      rgba(150, 200, 255, 0.20) 24deg,
      rgba(234, 179, 8, 0.10) 32deg,
      rgba(150, 200, 255, 0.14) 42deg,
      transparent 58deg,
      transparent 360deg);
  filter: blur(18px);
  animation: heroRaysDrift 14s ease-in-out infinite alternate;
}

.hero-rays::after {
  top: 6vh;
  right: -26vw;
  opacity: 0.58;
  transform: rotate(12deg);
  animation-duration: 18s;
}

.hero-rays span:first-child {
  top: -10vh;
  opacity: 0.34;
  transform: rotate(-10deg);
  animation-duration: 22s;
}

.hero-rays span:last-child {
  right: -36vw;
  top: 18vh;
  opacity: 0.25;
  transform: rotate(24deg);
  animation-duration: 26s;
}

@keyframes heroRaysDrift {
  from {
    transform: rotate(-4deg) translate3d(0, 0, 0) scale(1);
  }
  to {
    transform: rotate(7deg) translate3d(-28px, 24px, 0) scale(1.06);
  }
}

.hero-subtitle {
  font-size: clamp(28px, 3vw, 48px);
  letter-spacing: -0.035em;
}

.hero-text {
  max-width: 760px;
}

.signal-grid article {
  transition: transform 0.26s ease, border-color 0.26s ease, background 0.26s ease;
}

.signal-grid article:hover {
  transform: translateY(-3px);
  border-color: rgba(174, 214, 245, 0.34);
  background: rgba(255, 255, 255, 0.08);
}

.profile-card.main {
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 500px;
  border-color: rgba(23, 102, 166, 0.32);
  background:
    radial-gradient(circle at 88% 14%, rgba(139, 196, 236, 0.24), transparent 34%),
    linear-gradient(145deg, #0d2b45, #071925 70%);
  box-shadow: 0 34px 90px rgba(5, 17, 28, 0.18);
}

.profile-card.main::after {
  content: "";
  position: absolute;
  inset: auto 26px 26px 26px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(159, 211, 247, 0.42), transparent);
}

.profile-focus-map {
  position: relative;
  margin-top: 36px;
  border: 1px solid rgba(159, 211, 247, 0.18);
  border-radius: 14px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.055);
}

.profile-focus-map strong {
  display: block;
  color: rgba(236, 247, 255, 0.72);
  font-size: 12px;
  font-weight: 820;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.profile-focus-map ol {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 14px 0 0;
  padding: 0;
}

.profile-focus-map li {
  min-height: 88px;
  border-radius: 10px;
  padding: 14px 12px;
  background: rgba(255, 255, 255, 0.07);
}

.profile-focus-map b,
.profile-focus-map em {
  display: block;
  font-style: normal;
}

.profile-focus-map b {
  color: #fff;
  font-size: 16px;
}

.profile-focus-map em {
  margin-top: 8px;
  color: rgba(219, 237, 250, 0.66);
  font-size: 12px;
  line-height: 1.45;
}

.evidence-timeline {
  min-height: auto;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  padding: 18px;
  background:
    radial-gradient(circle at 12% 8%, rgba(150, 200, 255, 0.18), transparent 30%),
    linear-gradient(145deg, #0f2e48, #071925 72%);
}

.evidence-timeline::before {
  right: 24px;
  top: 18px;
  transform: none;
  opacity: 0.12;
  font-size: 26px;
  letter-spacing: 0.04em;
}

.timeline-item {
  position: relative;
  min-height: 205px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 12px;
  padding: 20px 18px;
  background: rgba(255, 255, 255, 0.045);
  transition: transform 0.24s ease, background 0.24s ease, border-color 0.24s ease;
}

.timeline-item:hover {
  transform: translateY(-3px);
  border-color: rgba(159, 211, 247, 0.28);
  background: rgba(255, 255, 255, 0.07);
}

.timeline-item span {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(159, 211, 247, 0.22);
  border-radius: 999px;
  color: #9fd3f7;
  font-size: 12px;
  font-weight: 820;
}

.timeline-item strong {
  display: block;
  margin: 20px 0 12px;
  color: #fff;
  font-size: 22px;
  line-height: 1.22;
}

.timeline-item p {
  color: rgba(232, 242, 250, 0.72);
  font-size: 14px;
  line-height: 1.72;
}

.proposal-kicker {
  letter-spacing: 0.08em;
}

.system-map {
  overflow: hidden;
  transform: translateZ(0);
}

.system-map::before {
  content: "";
  position: absolute;
  inset: 18px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(22, 119, 184, 0.13), transparent 58%);
  animation: systemPulse 5.8s ease-in-out infinite;
}

.system-core {
  animation: systemCoreFloat 4.8s ease-in-out infinite;
  box-shadow: 0 18px 44px rgba(18, 102, 166, 0.22);
}

.system-node {
  transition: transform 0.26s ease, box-shadow 0.26s ease, border-color 0.26s ease;
  animation: systemNodeFloat 7s ease-in-out infinite;
}

.system-node:nth-of-type(odd) {
  animation-delay: -1.7s;
}

.system-node:nth-of-type(even) {
  animation-delay: -3.1s;
}

.system-node:hover {
  transform: translateY(-7px) scale(1.018);
  border-color: rgba(22, 119, 184, 0.32);
  box-shadow: 0 20px 50px rgba(16, 86, 142, 0.14);
}

@keyframes systemPulse {
  0%, 100% {
    opacity: 0.45;
    transform: scale(0.96);
  }
  50% {
    opacity: 0.88;
    transform: scale(1.04);
  }
}

@keyframes systemCoreFloat {
  0%, 100% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(0, -8px, 0);
  }
}

@keyframes systemNodeFloat {
  0%, 100% {
    translate: 0 0;
  }
  50% {
    translate: 0 -4px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-rays::before,
  .hero-rays::after,
  .hero-rays span,
  .system-map::before,
  .system-core,
  .system-node {
    animation: none !important;
  }
}

/* Final pass: darker React Bits style hero, simplified evidence, stable proposal map */
.hero {
  background:
    radial-gradient(900px 620px at 84% -4%,
      rgba(224, 242, 255, 0.22) 0%,
      rgba(132, 190, 245, 0.13) 20%,
      rgba(45, 74, 112, 0.05) 40%,
      transparent 64%),
    radial-gradient(760px 560px at 78% 28%,
      rgba(76, 115, 156, 0.10) 0%,
      rgba(34, 54, 82, 0.05) 38%,
      transparent 70%),
    linear-gradient(120deg, #03050a 0%, #05080d 44%, #07111c 100%);
}

.hero::before {
  background:
    radial-gradient(circle at 88% 0%, rgba(218, 245, 255, 0.16), transparent 27%),
    linear-gradient(180deg, rgba(2, 5, 9, 0.10), rgba(2, 5, 9, 0.58));
}

.hero::after {
  background:
    radial-gradient(760px 520px at 86% 2%, rgba(210, 238, 255, 0.14), transparent 55%),
    linear-gradient(110deg, rgba(3, 5, 10, 0.94) 0%, rgba(4, 8, 14, 0.82) 46%, rgba(5, 12, 20, 0.58) 100%),
    linear-gradient(180deg, rgba(2, 4, 8, 0.16), rgba(2, 4, 8, 0.76));
}

.hero-grid {
  opacity: 0.13;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.042) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.036) 1px, transparent 1px);
  mask-image: linear-gradient(115deg, transparent 0%, rgba(0, 0, 0, 0.42) 18%, rgba(0, 0, 0, 0.35) 58%, transparent 100%);
}

.hero-rays {
  opacity: 0.92;
  mix-blend-mode: screen;
}

.hero-rays::before,
.hero-rays::after,
.hero-rays span {
  right: -20vw;
  top: -28vh;
  width: 92vw;
  height: 112vh;
  border-radius: 0;
  transform-origin: 94% 0%;
  background:
    linear-gradient(116deg,
      transparent 0%,
      transparent 42%,
      rgba(240, 250, 255, 0.28) 48%,
      rgba(144, 203, 244, 0.15) 53%,
      rgba(78, 115, 148, 0.045) 64%,
      transparent 78%),
    radial-gradient(520px 360px at 92% 2%, rgba(232, 249, 255, 0.42), rgba(156, 213, 247, 0.14) 36%, transparent 72%);
  filter: blur(26px);
  animation: heroRaysDriftFast 7.5s ease-in-out infinite alternate;
}

.hero-rays::after {
  right: -30vw;
  top: -20vh;
  opacity: 0.74;
  transform: rotate(7deg);
  animation-duration: 9s;
}

.hero-rays span:first-child {
  right: -24vw;
  top: -34vh;
  opacity: 0.56;
  transform: rotate(-8deg);
  animation-duration: 6.5s;
}

.hero-rays span:last-child {
  right: -38vw;
  top: -4vh;
  opacity: 0.42;
  transform: rotate(18deg);
  animation-duration: 10s;
}

@keyframes heroRaysDriftFast {
  from {
    translate: 0 0;
    scale: 1;
    filter: blur(28px);
  }
  to {
    translate: -58px 38px;
    scale: 1.08;
    filter: blur(22px);
  }
}

.hero-console {
  background: rgba(14, 22, 32, 0.62);
  border-color: rgba(255, 255, 255, 0.14);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(16px);
}

.signal-grid article {
  background: rgba(7, 13, 22, 0.48);
  border-color: rgba(255, 255, 255, 0.09);
}

/* Final layout polish from review comments */
.profile-focus-map li {
  min-width: 0;
}

.profile-focus-map b,
.profile-focus-map em {
  white-space: nowrap;
}

.profile-focus-map em {
  font-size: 11px;
  letter-spacing: -0.01em;
}

#evidence > .section-heading {
  display: none !important;
}

.research-section .section-heading,
.cockpit,
.research-chain {
  width: min(1160px, calc(100% - 52px)) !important;
}

.proposal-shell {
  width: min(1160px, calc(100% - 52px)) !important;
}

.paper-switch-main {
  width: min(1320px, calc(100% - 56px));
}

.paper-switch-nav {
  position: sticky;
  top: 76px;
  align-self: start;
  max-height: calc(100vh - 92px);
  overflow-y: auto;
  padding-right: 8px;
}

.paper-switch-intro {
  padding-bottom: 16px;
}

.paper-switch-intro span,
.paper-switch-intro p,
.publication-direction-tags {
  display: none !important;
}

.paper-switch-intro h1 {
  margin: 0;
  font-size: 44px;
  line-height: 1;
}

.evidence-grid {
  grid-template-columns: minmax(0, 1fr);
  max-width: 1180px;
  margin-inline: auto;
}

.evidence-timeline {
  display: none;
}

.resume-dossier {
  width: 100%;
  min-height: auto;
}

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

.system-map::before,
.system-core,
.system-node {
  animation: none !important;
}

.system-core {
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) !important;
}

.system-node {
  translate: 0 0;
  transition: translate 0.26s ease, box-shadow 0.26s ease, border-color 0.26s ease, background 0.26s ease;
}

.node-a {
  --node-base-transform: translateX(-50%);
  transform: var(--node-base-transform);
}

.system-node:hover {
  transform: var(--node-base-transform, none);
  translate: 0 -7px;
  border-color: rgba(22, 119, 184, 0.32);
  box-shadow: 0 20px 50px rgba(16, 86, 142, 0.14);
}

/* Side Rays final: three corner point lights with diagonal falloff */
.hero {
  isolation: isolate;
  background:
    radial-gradient(760px 560px at 108% -18%,
      rgba(245, 252, 255, 0.18) 0%,
      rgba(150, 205, 244, 0.10) 26%,
      rgba(46, 72, 104, 0.034) 52%,
      transparent 76%),
    radial-gradient(880px 620px at 68% 36%,
      rgba(38, 63, 91, 0.06) 0%,
      transparent 68%),
    linear-gradient(135deg, #020308 0%, #05060b 42%, #070a10 68%, #04060a 100%);
}

.hero::before {
  opacity: 0.72;
  background:
    radial-gradient(520px 380px at 94% 0%,
      rgba(232, 248, 255, 0.14) 0%,
      rgba(120, 184, 236, 0.07) 36%,
      transparent 72%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.04), rgba(0, 0, 0, 0.62));
}

.hero::after {
  background:
    radial-gradient(1140px 760px at 78% 2%,
      transparent 0%,
      rgba(0, 0, 0, 0.08) 43%,
      rgba(0, 0, 0, 0.56) 100%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.44) 0%, rgba(0, 0, 0, 0.12) 46%, rgba(0, 0, 0, 0.32) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.12), rgba(0, 0, 0, 0.70));
}

.hero-grid {
  opacity: 0.105;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  mask-image:
    radial-gradient(920px 620px at 78% 10%, rgba(0, 0, 0, 0.78), rgba(0, 0, 0, 0.22) 58%, transparent 100%),
    linear-gradient(135deg, rgba(0, 0, 0, 0.12), rgba(0, 0, 0, 0.72) 36%, rgba(0, 0, 0, 0.18));
}

.hero-rays {
  inset: 68px 0 0;
  opacity: 1;
  filter: saturate(1.18);
  mix-blend-mode: screen;
  mask-image: linear-gradient(132deg,
    rgba(0, 0, 0, 1) 0%,
    rgba(0, 0, 0, 0.98) 18%,
    rgba(0, 0, 0, 0.58) 48%,
    rgba(0, 0, 0, 0.12) 72%,
    transparent 100%);
}

.hero-rays::before {
  content: "";
  position: absolute;
  inset: -22% -8% -10% 36%;
  background:
    radial-gradient(14px 14px at 92% 8%, rgba(255, 255, 255, 0.78), transparent 68%),
    radial-gradient(260px 220px at 90% 7%, rgba(232, 249, 255, 0.23), transparent 74%),
    radial-gradient(540px 420px at 86% 8%, rgba(132, 190, 245, 0.11), transparent 78%);
  filter: blur(10px);
  animation: sideRaySourcePulse 4.2s ease-in-out infinite alternate;
}

.hero-rays::after {
  content: "";
  position: absolute;
  inset: -18% -16% -8% 26%;
  background:
    linear-gradient(124deg,
      transparent 0%,
      transparent 31%,
      rgba(235, 247, 255, 0.18) 38%,
      rgba(150, 205, 244, 0.11) 46%,
      rgba(70, 112, 158, 0.035) 62%,
      transparent 82%),
    linear-gradient(132deg,
      transparent 0%,
      transparent 44%,
      rgba(234, 179, 8, 0.09) 52%,
      rgba(242, 226, 170, 0.05) 60%,
      transparent 78%);
  filter: blur(42px);
  transform-origin: 100% 0%;
  animation: sideRayWideBreath 6.8s cubic-bezier(0.45, 0, 0.2, 1) infinite alternate;
}

.hero-rays span {
  position: absolute;
  right: -7%;
  top: -19%;
  width: 72vw;
  height: 88vh;
  border-radius: 0;
  transform-origin: 96% 4%;
  opacity: var(--ray-opacity, 0.72);
  background:
    radial-gradient(18px 18px at var(--source-x, 92%) var(--source-y, 8%),
      rgba(255, 255, 255, 0.72) 0%,
      var(--source-color) 34%,
      transparent 72%),
    radial-gradient(320px 260px at var(--source-x, 92%) var(--source-y, 8%),
      var(--source-glow) 0%,
      transparent 72%),
    conic-gradient(from var(--ray-from, 218deg) at var(--source-x, 92%) var(--source-y, 8%),
      transparent 0deg,
      transparent var(--ray-start, 14deg),
      var(--ray-core) var(--ray-core-a, 24deg),
      var(--ray-mid) var(--ray-mid-a, 34deg),
      rgba(255, 255, 255, 0.00) var(--ray-end, 62deg),
      transparent 360deg);
  filter: blur(var(--ray-blur, 28px));
  mask-image:
    radial-gradient(820px 620px at 94% 0%,
      rgba(0, 0, 0, 1) 0%,
      rgba(0, 0, 0, 0.88) 24%,
      rgba(0, 0, 0, 0.38) 58%,
      transparent 86%),
    linear-gradient(132deg,
      rgba(0, 0, 0, 1) 0%,
      rgba(0, 0, 0, 0.72) 42%,
      rgba(0, 0, 0, 0.10) 78%,
      transparent 100%);
  animation: sideRayFloat var(--ray-speed, 6.6s) ease-in-out infinite alternate;
}

.hero-rays span:nth-child(1) {
  --source-x: 93%;
  --source-y: 6%;
  --source-color: rgba(150, 200, 255, 0.58);
  --source-glow: rgba(150, 200, 255, 0.22);
  --ray-core: rgba(190, 226, 255, 0.23);
  --ray-mid: rgba(109, 178, 236, 0.10);
  --ray-from: 214deg;
  --ray-start: 12deg;
  --ray-core-a: 24deg;
  --ray-mid-a: 38deg;
  --ray-end: 70deg;
  --ray-opacity: 0.82;
  --ray-blur: 30px;
  --ray-speed: 5.8s;
  rotate: -2deg;
}

.hero-rays span:nth-child(2) {
  --source-x: 88%;
  --source-y: 3%;
  --source-color: rgba(234, 179, 8, 0.46);
  --source-glow: rgba(234, 179, 8, 0.13);
  --ray-core: rgba(234, 179, 8, 0.12);
  --ray-mid: rgba(255, 238, 185, 0.06);
  --ray-from: 224deg;
  --ray-start: 19deg;
  --ray-core-a: 31deg;
  --ray-mid-a: 43deg;
  --ray-end: 64deg;
  --ray-opacity: 0.56;
  --ray-blur: 40px;
  --ray-speed: 7.4s;
  right: -11%;
  top: -22%;
  rotate: 6deg;
}

.hero-rays span:nth-child(3) {
  --source-x: 96%;
  --source-y: 14%;
  --source-color: rgba(126, 240, 218, 0.40);
  --source-glow: rgba(126, 240, 218, 0.11);
  --ray-core: rgba(126, 240, 218, 0.11);
  --ray-mid: rgba(102, 194, 221, 0.055);
  --ray-from: 206deg;
  --ray-start: 9deg;
  --ray-core-a: 20deg;
  --ray-mid-a: 30deg;
  --ray-end: 52deg;
  --ray-opacity: 0.50;
  --ray-blur: 46px;
  --ray-speed: 8.4s;
  right: -4%;
  top: -7%;
  rotate: -11deg;
}

@keyframes sideRayFloat {
  0% {
    translate: 0 0;
    scale: 1;
  }
  55% {
    translate: -18px 12px;
    scale: 1.025;
  }
  100% {
    translate: -34px 23px;
    scale: 1.055;
  }
}

@keyframes sideRaySourcePulse {
  from {
    opacity: 0.62;
    transform: scale(0.985);
  }
  to {
    opacity: 0.94;
    transform: scale(1.04);
  }
}

@keyframes sideRayWideBreath {
  from {
    opacity: 0.35;
    transform: rotate(-2deg) translate3d(0, 0, 0);
  }
  to {
    opacity: 0.66;
    transform: rotate(3deg) translate3d(-24px, 18px, 0);
  }
}

.hero-console {
  background:
    linear-gradient(145deg, rgba(17, 24, 34, 0.68), rgba(8, 14, 22, 0.48));
  border-color: rgba(255, 255, 255, 0.13);
  box-shadow:
    0 26px 84px rgba(0, 0, 0, 0.38),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.signal-grid article {
  background:
    linear-gradient(145deg, rgba(7, 13, 22, 0.58), rgba(10, 19, 30, 0.38));
}

@media (prefers-reduced-motion: reduce) {
  .hero-rays::before,
  .hero-rays::after,
  .hero-rays span {
    animation: none !important;
  }
}

/* Side Rays refinement: top-right translucent beams without visible point dots */
.hero {
  background:
    radial-gradient(900px 680px at 96% -20%, rgba(44, 70, 98, 0.34), transparent 66%),
    linear-gradient(135deg, #05040b 0%, #060811 46%, #03050a 100%);
}

.hero-copy,
.hero-console {
  top: -48px;
}

.hero::after {
  background:
    radial-gradient(1120px 760px at 90% 0%, transparent 0%, rgba(0, 0, 0, 0.08) 46%, rgba(0, 0, 0, 0.60) 100%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.50), rgba(0, 0, 0, 0.04) 52%, rgba(0, 0, 0, 0.18)),
    linear-gradient(180deg, rgba(0, 0, 0, 0.04), rgba(0, 0, 0, 0.72));
}

.hero-rays {
  opacity: 1;
  filter: saturate(1.42) contrast(1.06);
  mix-blend-mode: screen;
  mask-image: none;
}

.hero-rays::before {
  inset: 0;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: auto;
  height: auto;
  border-radius: 0;
  transform: none;
  background:
    conic-gradient(from 210deg at 96% -12%,
      transparent 0deg,
      rgba(236, 250, 255, 0.36) 12deg,
      rgba(150, 200, 255, 0.20) 26deg,
      transparent 46deg,
      transparent 66deg,
      rgba(234, 179, 8, 0.055) 82deg,
      transparent 108deg,
      transparent 360deg),
    radial-gradient(520px 360px at 97% -10%, rgba(214, 245, 255, 0.22), rgba(91, 145, 190, 0.10) 44%, transparent 78%);
  filter: blur(30px);
  opacity: 0.92;
  mask-image: linear-gradient(to bottom left, rgba(0, 0, 0, 0.98) 0%, rgba(0, 0, 0, 0.76) 30%, rgba(0, 0, 0, 0.20) 62%, transparent 90%);
  animation: sideRaySourcePulse 2.2s ease-in-out infinite alternate;
}

.hero-rays::after {
  inset: 0;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: auto;
  height: auto;
  border-radius: 0;
  background:
    conic-gradient(from 214deg at 104% -24%,
      transparent 0deg,
      rgba(238, 251, 255, 0.46) 8deg,
      rgba(150, 200, 255, 0.24) 18deg,
      rgba(68, 108, 154, 0.08) 34deg,
      transparent 54deg,
      transparent 76deg,
      rgba(234, 179, 8, 0.065) 88deg,
      transparent 112deg,
      transparent 360deg);
  clip-path: none;
  filter: blur(30px);
  opacity: 1;
  mask-image:
    linear-gradient(to bottom left, rgba(0, 0, 0, 0.98) 0%, rgba(0, 0, 0, 0.86) 34%, rgba(0, 0, 0, 0.30) 70%, transparent 98%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.98), rgba(0, 0, 0, 0.76) 48%, transparent 100%);
  transform-origin: 94% 0%;
  animation: sideRayWideBreath 2.15s cubic-bezier(0.45, 0, 0.2, 1) infinite alternate;
}

.hero-rays span {
  inset: 0;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: auto;
  height: auto;
  border-radius: 0;
  transform-origin: var(--source-x, 101%) var(--source-y, -24%);
  transform: none;
  opacity: var(--ray-opacity, 0.7);
  background:
    conic-gradient(from var(--ray-from, 214deg) at var(--source-x, 101%) var(--source-y, -24%),
      transparent 0deg,
      transparent var(--ray-start, 5deg),
      var(--ray-head) var(--ray-head-a, 12deg),
      var(--ray-core) var(--ray-core-a, 22deg),
      var(--ray-mid) var(--ray-mid-a, 38deg),
      transparent var(--ray-end-a, 62deg),
      transparent 360deg);
  clip-path: none;
  filter: blur(var(--ray-blur, 22px));
  mask-image:
    linear-gradient(to bottom left, rgba(0, 0, 0, 0.98) 0%, rgba(0, 0, 0, 0.86) 28%, rgba(0, 0, 0, 0.42) 63%, transparent 96%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.98) 0%, rgba(0, 0, 0, 0.78) 52%, transparent 100%);
  animation: sideRayFloat var(--ray-speed, 2.6s) ease-in-out infinite alternate;
}

.hero-rays span:nth-child(1) {
  --source-x: 104%;
  --source-y: -28%;
  --ray-from: 212deg;
  --ray-start: 4deg;
  --ray-head-a: 11deg;
  --ray-core-a: 21deg;
  --ray-mid-a: 40deg;
  --ray-end-a: 66deg;
  --ray-head: rgba(238, 251, 255, 0.62);
  --ray-core: rgba(150, 200, 255, 0.38);
  --ray-mid: rgba(72, 118, 168, 0.10);
  --ray-opacity: 0.98;
  --ray-blur: 21px;
  --ray-speed: 2.05s;
}

.hero-rays span:nth-child(2) {
  --source-x: 103%;
  --source-y: -20%;
  --ray-from: 226deg;
  --ray-start: 8deg;
  --ray-head-a: 16deg;
  --ray-core-a: 27deg;
  --ray-mid-a: 44deg;
  --ray-end-a: 70deg;
  --ray-head: rgba(255, 233, 156, 0.17);
  --ray-core: rgba(234, 179, 8, 0.075);
  --ray-mid: rgba(128, 93, 35, 0.032);
  --ray-opacity: 0.58;
  --ray-blur: 28px;
  --ray-speed: 2.35s;
}

.hero-rays span:nth-child(3) {
  --source-x: 104%;
  --source-y: -8%;
  --ray-from: 202deg;
  --ray-start: 6deg;
  --ray-head-a: 14deg;
  --ray-core-a: 25deg;
  --ray-mid-a: 42deg;
  --ray-end-a: 68deg;
  --ray-head: rgba(166, 255, 241, 0.24);
  --ray-core: rgba(126, 240, 218, 0.12);
  --ray-mid: rgba(54, 130, 144, 0.055);
  --ray-opacity: 0.74;
  --ray-blur: 30px;
  --ray-speed: 2.65s;
}

@keyframes sideRayFloat {
  0% {
    translate: 0 0;
    scale: 1 1;
  }
  100% {
    translate: -54px 34px;
    scale: 1.08 1.12;
  }
}

@keyframes sideRaySourcePulse {
  from {
    opacity: 0.68;
    transform: translate3d(0, 0, 0) scale(0.99);
  }
  to {
    opacity: 1;
    transform: translate3d(-18px, 12px, 0) scale(1.04);
  }
}

@keyframes sideRayWideBreath {
  from {
    opacity: 0.58;
    transform: translate3d(0, 0, 0) rotate(-0.8deg);
  }
  to {
    opacity: 0.96;
    transform: translate3d(-48px, 30px, 0) rotate(1.2deg);
  }
}

/* Final dossier layout: five publication cards as the primary evidence wall */
.research-section .section-heading h2 {
  max-width: 820px;
  font-size: clamp(38px, 4.8vw, 68px);
  line-height: 1.04;
  letter-spacing: -0.028em;
}

#evidence {
  padding: clamp(28px, 3.2vw, 52px) 0 clamp(56px, 5.2vw, 84px);
}

#evidence .evidence-grid {
  display: block;
  width: min(1460px, calc(100% - 160px));
  max-width: none;
  margin: 0 auto;
}

.resume-dossier {
  display: block;
  overflow: visible;
  width: 100%;
  padding: 0;
  border: 0 !important;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.resume-dossier::before {
  display: none;
}

.dossier-head {
  position: relative;
  max-width: 780px;
  padding: 0 0 4px;
  border: 0;
  background: transparent;
}

.dossier-head::after {
  content: "";
  display: block;
  width: 52px;
  height: 4px;
  margin-top: 16px;
  border-radius: 99px;
  background: linear-gradient(90deg, #4c8be2, #9fc5ff);
}

.dossier-head span {
  display: block;
  color: #2f75d4;
  font-size: 15px;
  font-weight: 780;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.dossier-head strong {
  display: block;
  margin-top: 14px;
  color: #071a33;
  font-size: clamp(46px, 4.2vw, 76px);
  line-height: 1;
  letter-spacing: -0.035em;
}

.dossier-head p {
  max-width: 820px;
  margin: 16px 0 0;
  color: #24364e;
  font-size: 19px;
  line-height: 1.62;
}

.dossier-tags {
  display: none !important;
}

.dossier-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0;
  overflow: visible;
  counter-reset: none;
}

.dossier-grid > section,
.dossier-grid > section:nth-child(6) {
  position: relative;
  min-height: 0;
  margin: 0;
  border: 0;
  background: transparent;
  transition: transform 260ms ease, box-shadow 260ms ease, border-color 260ms ease;
}

.resume-dossier.interactive-surface::after,
#evidence .interactive-surface::after,
#evidence .interactive-surface:hover::after,
.dossier-grid section.interactive-surface::after,
.dossier-grid section.interactive-surface:hover::after {
  display: none !important;
  opacity: 0 !important;
  background: transparent !important;
}

.dossier-grid > section::before {
  display: none;
}

.dossier-grid > section:hover {
  background: transparent;
  transform: none;
}

.dossier-grid > section:first-child {
  grid-column: 1 / -1;
  grid-row: auto;
  padding: 0;
}

.dossier-grid > section:first-child > span {
  display: none;
}

.paper-list {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  align-items: end;
  gap: 26px;
  margin: 18px 0 0 !important;
  padding: 0 !important;
  list-style: none;
}

.paper-list li {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 420px;
  min-height: 0;
  padding: 27px 24px 25px !important;
  border: 1px solid rgba(144, 188, 240, 0.72) !important;
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.97), rgba(250, 253, 255, 0.90)),
    linear-gradient(135deg, rgba(229, 242, 255, 0.74), rgba(255, 255, 255, 0.24));
  box-shadow: 0 20px 52px rgba(40, 96, 158, 0.11);
  isolation: isolate;
}

.paper-list li:hover {
  border-color: rgba(57, 137, 224, 0.86) !important;
  transform: translateY(-7px);
  box-shadow: 0 26px 62px rgba(37, 100, 178, 0.17);
}

.paper-list li::before {
  align-self: flex-start;
  min-width: 76px;
  padding: 9px 17px;
  border-radius: 999px;
  background: linear-gradient(180deg, #edf5ff, #dfeeff);
  color: #1c63b8;
  font-size: 17px;
  font-weight: 760;
  line-height: 1;
  text-align: center;
}

.paper-list li::after {
  content: "";
  position: absolute;
  top: 27px;
  right: 24px;
  width: 46px;
  height: 46px;
  border: 3px solid rgba(125, 176, 242, 0.42);
  border-radius: 14px 14px 18px 18px;
  opacity: 0.86;
  transform: rotate(-3deg);
}

.paper-list li:nth-child(5) {
  order: 1;
  height: 560px;
}

.paper-list li:nth-child(4) {
  order: 4;
  height: 614px;
}

.paper-list li:nth-child(3) {
  order: 3;
  height: 596px;
}

.paper-list li:nth-child(2) {
  order: 2;
  height: 578px;
}

.paper-list li:nth-child(1) {
  order: 5;
  height: 632px;
}

.paper-list li:nth-child(5)::before {
  content: "省级论文";
}

.paper-list li:nth-child(4)::before {
  content: "EI会议";
}

.paper-list li:nth-child(3)::before {
  content: "北大核心";
}

.paper-list li:nth-child(2)::before {
  content: "北大核心";
}

.paper-list li:nth-child(1)::before {
  content: "SCI";
}

.paper-list strong {
  display: block;
  max-width: none;
  margin-top: 28px;
  color: #071a33;
  font-size: clamp(18px, 1.08vw, 24px);
  line-height: 1.24;
  font-weight: 820;
  letter-spacing: -0.018em;
}

.paper-list strong::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  margin-top: 25px;
  background: rgba(112, 157, 213, 0.45);
}

.paper-list strong a {
  color: inherit;
  text-decoration: none;
  background: none;
}

.paper-list strong a::after {
  content: none;
}

.paper-list strong a:hover {
  color: #1766b2;
  background: none;
}

.paper-list em {
  display: block;
  margin-top: 24px;
  color: #24364e;
  font-size: 16px;
  line-height: 1.5;
  font-style: normal;
}

.paper-list .paper-meta {
  display: block;
  margin-top: auto;
  padding-top: 26px;
  color: #112a45;
  font-size: 15px;
  line-height: 1.58;
}

.paper-actions {
  display: none !important;
}

.dossier-grid > section:not(:first-child) {
  margin-top: 72px;
  min-height: 228px;
  padding: 30px 30px 28px;
  border-top: 1px solid rgba(144, 188, 240, 0.72);
  border-bottom: 1px solid rgba(144, 188, 240, 0.72);
  border-left: 1px solid rgba(144, 188, 240, 0.42);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(248, 252, 255, 0.84)),
    rgba(255, 255, 255, 0.80);
  box-shadow: 0 22px 58px rgba(44, 100, 160, 0.09);
}

.dossier-grid > section:nth-child(2) {
  border-left: 1px solid rgba(144, 188, 240, 0.72);
  border-radius: 20px 0 0 20px;
}

.dossier-grid > section:nth-child(6) {
  grid-column: auto;
  border-right: 1px solid rgba(144, 188, 240, 0.72);
  border-radius: 0 20px 20px 0;
}

.dossier-grid > section:nth-child(2)::before {
  content: "申请支撑信息";
  display: flex;
  position: absolute;
  left: 28px;
  top: -50px;
  align-items: center;
  gap: 12px;
  color: #071a33;
  font-size: 25px;
  font-weight: 820;
  letter-spacing: -0.018em;
  white-space: nowrap;
}

.dossier-grid > section:nth-child(2)::after {
  content: "";
  position: absolute;
  top: -26px;
  left: 235px;
  width: min(1260px, calc(500% - 235px));
  height: 1px;
  background: rgba(112, 157, 213, 0.36);
}

.dossier-grid > section:not(:first-child) > span {
  display: flex;
  align-items: center;
  gap: 11px;
  color: #0d315c;
  font-size: 20px;
  font-weight: 820;
  letter-spacing: -0.012em;
  text-transform: none;
}

.dossier-grid > section:not(:first-child) > span::before {
  content: "";
  width: 25px;
  height: 25px;
  border-radius: 8px;
  background:
    radial-gradient(circle at 30% 30%, #9fc5ff 0 18%, transparent 19%),
    radial-gradient(circle at 70% 30%, #6fa9ed 0 18%, transparent 19%),
    radial-gradient(circle at 30% 70%, #6fa9ed 0 18%, transparent 19%),
    radial-gradient(circle at 70% 70%, #9fc5ff 0 18%, transparent 19%);
}

.dossier-grid > section:not(:first-child) ul {
  margin: 18px 0 0;
  padding-left: 19px;
  color: #182f4a;
  font-size: 16px;
  line-height: 1.7;
}

.dossier-grid > section:not(:first-child) li::marker {
  color: #2f75d4;
}

.dossier-grid > section:not(:first-child) li + li {
  margin-top: 8px;
}

/* Global polish pass: align sections, reduce nested boxes, add restrained motion */
html {
  scroll-padding-top: 74px;
}

.profile-section,
.evidence-section,
.research-section,
.projects-section,
.proposal-section,
.reader-section {
  scroll-margin-top: 74px;
}

.profile-card,
.studio-shell,
.proposal-position-card,
.proposal-topic-card,
.proposal-screen,
.reader-stage {
  backface-visibility: hidden;
}

.profile-card {
  transition:
    transform 300ms cubic-bezier(0.22, 1, 0.36, 1),
    border-color 300ms ease,
    box-shadow 300ms ease,
    background 300ms ease;
}

.profile-card:not(.main):hover {
  transform: translateY(-5px);
  border-color: rgba(82, 145, 213, 0.32);
  box-shadow: 0 22px 54px rgba(24, 72, 126, 0.11);
}

.profile-card.main {
  box-shadow:
    0 28px 72px rgba(4, 17, 32, 0.20),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.profile-focus-map {
  margin-top: 28px;
  padding: 18px 0 0;
  border: 0;
  border-top: 1px solid rgba(159, 211, 247, 0.22);
  border-radius: 0;
  background: transparent;
}

.profile-focus-map strong {
  color: rgba(236, 247, 255, 0.78);
}

.profile-focus-map ol {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.profile-focus-map ol::before {
  content: "";
  position: absolute;
  left: 8%;
  right: 8%;
  top: 18px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(159, 211, 247, 0.40), transparent);
}

.profile-focus-map li {
  position: relative;
  min-height: 66px;
  padding: 13px 10px 0;
  border-radius: 0;
  background: transparent;
  text-align: center;
}

.profile-focus-map li::before {
  content: "";
  display: block;
  width: 13px;
  height: 13px;
  margin: 0 auto 10px;
  border: 1px solid rgba(159, 211, 247, 0.70);
  border-radius: 50%;
  background: #0f314f;
  box-shadow: 0 0 0 5px rgba(159, 211, 247, 0.08);
}

.profile-focus-map b {
  font-size: 15px;
}

.profile-focus-map em {
  margin-top: 5px;
  color: rgba(219, 237, 250, 0.74);
}

.paper-list li {
  overflow: hidden;
  transition:
    transform 320ms cubic-bezier(0.22, 1, 0.36, 1),
    border-color 320ms ease,
    box-shadow 320ms ease,
    background 320ms ease;
}

.paper-list li::after {
  transition:
    transform 320ms cubic-bezier(0.22, 1, 0.36, 1),
    opacity 320ms ease,
    border-color 320ms ease;
}

.paper-list li:hover {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 1), rgba(247, 252, 255, 0.94)),
    linear-gradient(135deg, rgba(223, 241, 255, 0.92), rgba(255, 255, 255, 0.30));
}

.paper-list li:hover::after {
  opacity: 1;
  border-color: rgba(72, 151, 238, 0.52);
  transform: rotate(2deg) scale(1.04);
}

.dossier-grid > section:not(:first-child) {
  transition:
    transform 280ms cubic-bezier(0.22, 1, 0.36, 1),
    background 280ms ease,
    box-shadow 280ms ease;
}

.dossier-grid > section:not(:first-child):hover {
  transform: translateY(-3px);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 252, 255, 0.90)),
    rgba(255, 255, 255, 0.86);
  box-shadow: 0 28px 66px rgba(44, 100, 160, 0.12);
}

.studio-shell {
  border-color: rgba(17, 17, 17, 0.10);
  box-shadow: 0 28px 70px rgba(27, 45, 70, 0.10);
}

.studio-shell::before,
.studio-shell::after {
  opacity: 0.72;
}

.studio-gallery button {
  position: relative;
  border-color: rgba(23, 102, 166, 0.14);
  box-shadow: 0 12px 34px rgba(19, 58, 96, 0.08);
  transition:
    transform 300ms cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 300ms ease,
    border-color 300ms ease;
}

.studio-gallery button::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.18), transparent 36%),
    linear-gradient(180deg, transparent 62%, rgba(11, 33, 52, 0.10));
  opacity: 0;
  transition: opacity 260ms ease;
  pointer-events: none;
}

.studio-gallery button:hover {
  transform: translateY(-4px);
  border-color: rgba(23, 102, 166, 0.28);
  box-shadow: 0 20px 50px rgba(19, 58, 96, 0.14);
}

.studio-gallery button:hover::after {
  opacity: 1;
}

.proposal-position-card,
.proposal-topic-card {
  box-shadow:
    0 24px 68px rgba(41, 109, 176, 0.10),
    inset 0 1px 0 rgba(255, 255, 255, 0.58);
}

.system-map {
  --system-hover-lift: -6px;
}

.system-node {
  cursor: default;
  will-change: translate, box-shadow;
}

.system-node:hover {
  translate: 0 var(--system-hover-lift);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(240, 249, 255, 0.92));
}

.system-map:hover .system-core {
  box-shadow:
    0 22px 54px rgba(15, 103, 178, 0.24),
    0 0 0 12px rgba(24, 134, 214, 0.08);
}

.proposal-tabs button,
.studio-tabs button,
.reader-toolbar button,
.reader-toolbar a,
.hero-actions a {
  transition:
    transform 240ms cubic-bezier(0.22, 1, 0.36, 1),
    background 240ms ease,
    border-color 240ms ease,
    color 240ms ease,
    box-shadow 240ms ease;
}

.proposal-tabs button:hover,
.studio-tabs button:hover,
.reader-toolbar button:hover,
.reader-toolbar a:hover,
.hero-actions a:hover {
  transform: translateY(-2px);
}

.reader-stage,
.page-card {
  box-shadow: 0 24px 70px rgba(32, 74, 116, 0.10);
}

@media (prefers-reduced-motion: reduce) {
  .profile-card,
  .paper-list li,
  .dossier-grid > section:not(:first-child),
  .studio-gallery button,
  .proposal-tabs button,
  .studio-tabs button,
  .reader-toolbar button,
  .reader-toolbar a,
  .hero-actions a {
    transition: none !important;
  }
}

/* Final presentation refinements: typewriter, academic cards, and evidence pages */
.hero-subtitle.hero-type-title {
  margin: 22px 0 0 !important;
  max-width: 960px !important;
  font-family: inherit !important;
  font-size: clamp(64px, 4.05vw, 78px) !important;
  font-weight: 950 !important;
  line-height: 1.02 !important;
  letter-spacing: -0.038em !important;
}

.hero-subtitle.typewriter-line {
  display: inline-flex;
  align-items: center;
  min-height: 1.15em;
  min-width: 14em;
  white-space: nowrap;
  font-size: inherit;
  font-weight: inherit;
  color: inherit;
  line-height: inherit;
}

.typewriter-cursor {
  display: inline-block;
  margin-left: 6px;
  width: 2px;
  height: 0.9em;
  background: rgba(255, 255, 255, 0.92);
  animation: cursorBlink 0.8s steps(1) infinite;
  transform: translateY(0.04em);
}

@keyframes cursorBlink {
  0%,
  48% {
    opacity: 1;
  }

  49%,
  100% {
    opacity: 0;
  }
}

.profile-focus-map em {
  white-space: nowrap;
}

.dossier-head {
  padding-right: 220px;
}

.dossier-detail-link {
  position: absolute;
  right: 0;
  top: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  border: 1px solid rgba(47, 117, 212, 0.32);
  border-radius: 999px;
  color: #1766a6;
  font-size: 14px;
  font-weight: 760;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.74);
  box-shadow: 0 12px 28px rgba(47, 117, 212, 0.08);
}

.dossier-detail-link:hover {
  background: #1766a6;
  color: #fff;
  transform: translateY(-2px);
}

.dossier-grid > section:nth-child(3) .compact-list li {
  line-height: 1.55;
}

.research-section .section-heading h2 {
  max-width: 980px;
  font-size: clamp(52px, 5.2vw, 86px);
  letter-spacing: -0.038em;
}

.proposal-topic-card {
  grid-template-columns: minmax(360px, 0.78fr) minmax(620px, 1.22fr);
}

.proposal-topic-copy h3 {
  max-width: 9.5em;
  font-size: clamp(38px, 3.05vw, 56px);
  line-height: 1.04;
  letter-spacing: -0.032em;
  text-wrap: balance;
}

.proposal-topic-copy h3 b {
  display: inline;
}

.proposal-topic-copy h3 b + b::before {
  content: "";
  display: block;
}

.paper-data-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  margin: 30px 0 34px;
  padding: 0;
  border-top: 1px solid rgba(23, 102, 166, 0.16);
  border-bottom: 1px solid rgba(23, 102, 166, 0.16);
  border-radius: 0;
  background:
    linear-gradient(90deg, rgba(23, 102, 166, 0.06), transparent 45%),
    rgba(255, 255, 255, 0.46);
  overflow: visible;
}

.paper-data-grid section {
  min-height: 154px;
  padding: 24px 22px 22px;
  border: 0;
  border-right: 1px solid rgba(16, 34, 53, 0.10);
  background: transparent;
  box-shadow: none;
}

.paper-data-grid section:last-child {
  border-right: 0;
}

.paper-data-grid span {
  color: #1766a6;
  font-size: 12px;
  font-weight: 840;
  letter-spacing: 0.035em;
}

.paper-data-grid strong {
  margin-top: 18px;
  color: #102235;
  font-size: clamp(27px, 2vw, 38px);
  line-height: 1.08;
  letter-spacing: -0.04em;
  white-space: nowrap;
}

.paper-data-grid p {
  margin-top: 14px;
  color: rgba(16, 34, 53, 0.68);
  font-size: 14px;
  line-height: 1.65;
}

.method-flow {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(0, 1fr);
  grid-template-columns: none;
  gap: 0;
  border-radius: 12px;
  border: 1px solid rgba(23, 102, 166, 0.18);
  background: rgba(255, 255, 255, 0.74);
}

.method-flow span {
  min-height: 74px;
  padding: 18px 14px 18px 46px;
  border-right: 1px solid rgba(23, 102, 166, 0.12);
  background: transparent;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.method-flow span:last-child {
  border-right: 0;
}

.model-ring {
  justify-items: center;
}

.model-ring span {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  line-height: 1.22;
}

.translation-matrix {
  table-layout: auto;
  min-width: 100%;
}

.translation-matrix th,
.translation-matrix td {
  white-space: nowrap;
  padding-right: 18px;
}

.paper-deep-grid h4 {
  color: #1766a6;
}

.project-process-page .evidence-grid figure,
.process-block .evidence-grid figure {
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, rgba(247, 251, 255, 0.96), rgba(234, 245, 252, 0.72));
}

.project-process-page .evidence-grid img,
.process-block .evidence-grid img,
.project-process-page .evidence-grid figure:first-child img {
  width: 100%;
  height: auto;
  max-height: none;
  object-fit: contain;
}

@media (prefers-reduced-motion: reduce) {
  .typewriter-cursor {
    animation: none;
  }
}

/* Final thesis-presentation polish: calmer headings and denser dossier rhythm */
.profile-section .section-heading,
.projects-section .section-heading,
.reader-section .section-heading {
  width: min(1160px, calc(100% - 52px));
  margin-inline: auto;
}

.profile-section .section-heading h2,
.projects-section .section-heading h2,
.reader-section .section-heading h2 {
  max-width: 1040px;
  font-size: clamp(42px, 4.2vw, 70px);
  line-height: 1.02;
  letter-spacing: -0.044em;
  text-wrap: balance;
}

.profile-section {
  padding-top: clamp(78px, 8vw, 118px);
}

.profile-board {
  margin-top: 34px;
}

.resume-strip {
  margin-top: 22px;
}

.evidence-section {
  padding-top: clamp(76px, 7.5vw, 108px);
  padding-bottom: clamp(76px, 7vw, 108px);
}

.dossier-head {
  max-width: 980px;
  padding-right: 230px !important;
  margin-bottom: 10px;
}

.dossier-head strong {
  margin-top: 10px;
  font-size: clamp(42px, 3.6vw, 60px);
  letter-spacing: -0.038em;
}

.dossier-head p {
  max-width: 760px;
  margin-top: 12px;
  font-size: 17px;
  line-height: 1.56;
}

.dossier-head::after {
  margin-top: 14px;
}

.dossier-detail-link {
  top: 20px;
}

.paper-list {
  gap: 22px;
  margin-top: 2px !important;
}

.paper-list li {
  padding: 24px 22px 23px !important;
  border-radius: 16px;
}

.paper-list li::before {
  min-width: 70px;
  padding: 8px 15px;
  font-size: 15px;
}

.paper-list li::after {
  top: 23px;
  right: 22px;
  width: 40px;
  height: 40px;
  border-width: 2px;
}

.paper-list strong {
  margin-top: 24px;
  font-size: clamp(17px, 1vw, 21px);
  line-height: 1.24;
}

.paper-list strong::after {
  margin-top: 20px;
}

.paper-list em {
  margin-top: 20px;
  font-size: 14px;
  line-height: 1.48;
}

.paper-list .paper-meta {
  padding-top: 22px;
  font-size: 13px;
  line-height: 1.52;
}

.paper-list li:nth-child(5) {
  height: 470px;
}

.paper-list li:nth-child(2) {
  height: 490px;
}

.paper-list li:nth-child(3) {
  height: 510px;
}

.paper-list li:nth-child(4) {
  height: 530px;
}

.paper-list li:nth-child(1) {
  height: 550px;
}

.dossier-grid > section:not(:first-child) {
  margin-top: 54px;
  min-height: 188px;
  padding: 24px 24px 22px;
  box-shadow: 0 16px 42px rgba(44, 100, 160, 0.075);
}

.dossier-grid > section:nth-child(2)::before {
  top: -42px;
  left: 24px;
  font-size: 22px;
}

.dossier-grid > section:nth-child(2)::after {
  top: -20px;
  left: 206px;
}

.dossier-grid > section:not(:first-child) > span {
  font-size: 18px;
}

.dossier-grid > section:not(:first-child) > span::before {
  width: 21px;
  height: 21px;
  border-radius: 7px;
}

.dossier-grid > section:not(:first-child) ul {
  margin-top: 14px;
  font-size: 14px;
  line-height: 1.58;
}

.dossier-grid > section:not(:first-child) li + li {
  margin-top: 5px;
}

.research-section .section-heading h2 {
  font-size: clamp(46px, 5vw, 74px);
  line-height: 1.03;
  letter-spacing: -0.042em;
}

.proposal-header h2 {
  font-size: clamp(46px, 5.2vw, 78px);
  line-height: 0.98;
  letter-spacing: -0.045em;
}

.proposal-header-copy > p:not(.proposal-kicker) {
  max-width: 900px;
  font-size: 17px;
  line-height: 1.72;
}

/* Match first-level section content width to the resume dossier reference */
:root {
  --presentation-body-width: min(1460px, calc(100% - 160px));
}

.profile-section > .section-heading,
.profile-board,
.resume-strip,
#evidence .evidence-grid,
.research-section > .section-heading,
.cockpit,
.method-lab.research-chain,
.projects-section > .section-heading,
.project-lenses,
.studio-tabs,
.studio-shell,
.proposal-shell {
  width: var(--presentation-body-width) !important;
  max-width: none !important;
}

.research-section > .section-heading,
.cockpit,
.method-lab.research-chain,
.projects-section > .section-heading,
.project-lenses,
.studio-tabs,
.studio-shell,
.proposal-shell {
  margin-inline: auto !important;
}

.profile-section > .section-heading,
.profile-board,
.resume-strip {
  margin-inline: auto !important;
}

.proposal-shell {
  padding-inline: 0 !important;
}

/* Undergraduate foundation long-form section */
.undergraduate-foundation {
  --foundation-bg: #f7fbff;
  --foundation-blue: #1e6fea;
  --foundation-blue-soft: #eaf4ff;
  --foundation-text: #0b1d35;
  --foundation-muted: #5e6d7f;
  --foundation-line: rgba(30, 111, 234, 0.35);
  --foundation-border: rgba(137, 181, 232, 0.42);
  --foundation-card: rgba(255, 255, 255, 0.90);
  position: relative;
  padding: clamp(84px, 7vw, 116px) 0 clamp(86px, 7.5vw, 124px) !important;
  color: var(--foundation-text);
  background:
    linear-gradient(rgba(30, 111, 234, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(30, 111, 234, 0.045) 1px, transparent 1px),
    radial-gradient(circle at 10% 8%, rgba(222, 241, 255, 0.88), transparent 34%),
    linear-gradient(180deg, #f8fcff 0%, #ffffff 100%);
  background-size: 120px 120px, 120px 120px, auto, auto;
  overflow: hidden;
}

.foundation-inner {
  position: relative;
  width: var(--presentation-body-width);
  max-width: none;
  margin: 0 auto;
}

.foundation-header {
  display: grid;
  grid-template-columns: minmax(0, 0.66fr) minmax(280px, 0.34fr);
  gap: clamp(48px, 6vw, 110px);
  align-items: start;
  margin-bottom: 76px;
}

.foundation-kicker {
  position: relative;
  margin: 0 0 24px;
  color: var(--foundation-blue);
  font-size: 18px;
  font-weight: 820;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.foundation-kicker::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -12px;
  width: 46px;
  height: 4px;
  border-radius: 999px;
  background: var(--foundation-blue);
}

.foundation-header h2 {
  margin: 0;
  color: var(--foundation-text);
  font-size: clamp(62px, 5.5vw, 92px);
  line-height: 1.02;
  letter-spacing: -0.044em;
}

.foundation-header p:not(.foundation-kicker) {
  max-width: 680px;
  margin: 26px 0 0;
  color: #314258;
  font-size: 18px;
  line-height: 1.88;
}

.foundation-header blockquote {
  position: relative;
  margin: 72px 0 0;
  padding: 0 36px;
  color: var(--foundation-blue);
  font-size: 24px;
  font-weight: 760;
  line-height: 1.9;
}

.foundation-header blockquote::before,
.foundation-header blockquote::after {
  position: absolute;
  color: rgba(30, 111, 234, 0.22);
  font-size: 76px;
  font-weight: 900;
  line-height: 1;
}

.foundation-header blockquote::before {
  content: "“";
  left: 0;
  top: -34px;
}

.foundation-header blockquote::after {
  content: "”";
  right: 0;
  bottom: -56px;
}

.foundation-header blockquote span {
  display: block;
}

.foundation-path-wrap {
  position: relative;
  min-height: 1700px;
}

.foundation-path {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.foundation-path path {
  fill: none;
  stroke: rgba(30, 111, 234, 0.58);
  stroke-width: 3;
  stroke-dasharray: 10 12;
  stroke-linecap: round;
}

.foundation-card {
  position: relative;
  z-index: 2;
  width: min(620px, 48%);
  border: 1px solid var(--foundation-border);
  border-radius: 24px;
  padding: 38px 40px 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(249, 253, 255, 0.90)),
    var(--foundation-card);
  box-shadow: 0 24px 64px rgba(23, 91, 170, 0.12);
  backdrop-filter: blur(12px);
}

.foundation-card::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 50%;
  width: 124px;
  height: 28px;
  transform: translateX(-50%);
  border: 1px solid var(--foundation-border);
  border-bottom: 0;
  border-radius: 0 0 18px 18px;
  background: inherit;
}

.foundation-node {
  position: absolute;
  top: -24px;
  left: 50%;
  z-index: 3;
  width: 38px;
  height: 38px;
  border: 9px solid #fff;
  border-radius: 999px;
  background: var(--foundation-blue);
  box-shadow: 0 12px 30px rgba(30, 111, 234, 0.30);
  transform: translateX(-50%);
}

.foundation-card-01 {
  margin-left: auto;
  margin-right: 28px;
}

.foundation-card-02 {
  margin-top: -58px;
  margin-left: 38px;
}

.foundation-card-03 {
  margin-top: -34px;
  margin-left: auto;
  margin-right: 58px;
}

.foundation-card-04 {
  margin-top: -28px;
  margin-left: 38px;
}

.foundation-num {
  display: block;
  color: var(--foundation-blue);
  font-size: 44px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.035em;
}

.foundation-card h3 {
  margin: 12px 0 4px;
  color: var(--foundation-text);
  font-size: 34px;
  line-height: 1.16;
  letter-spacing: -0.035em;
}

.foundation-subtitle {
  margin: 0 0 22px;
  color: var(--foundation-blue);
  font-size: 17px;
  font-weight: 780;
}

.foundation-card p:not(.foundation-subtitle):not(.foundation-note) {
  margin: 0;
  color: #25374e;
  font-size: 15px;
  line-height: 1.78;
}

.foundation-card ul {
  display: grid;
  gap: 10px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.foundation-card li {
  position: relative;
  padding-left: 18px;
  color: #26374c;
  font-size: 15px;
  line-height: 1.68;
}

.foundation-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--foundation-blue);
}

.foundation-card li b {
  margin-right: 10px;
  color: var(--foundation-blue);
  font-weight: 820;
}

.foundation-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.foundation-tags span {
  border: 1px solid rgba(30, 111, 234, 0.22);
  border-radius: 999px;
  padding: 8px 15px;
  color: var(--foundation-blue);
  background: rgba(255, 255, 255, 0.74);
  font-size: 14px;
  font-weight: 720;
}

.foundation-note {
  margin: 20px 0 0;
  border-radius: 13px;
  padding: 14px 18px 14px 44px;
  color: var(--foundation-blue);
  background: rgba(30, 111, 234, 0.08);
  font-size: 14px;
  font-weight: 760;
  line-height: 1.58;
}

.foundation-note::before {
  content: "";
  position: absolute;
  width: 18px;
  height: 18px;
  margin-left: -28px;
  margin-top: 1px;
  border: 2px solid currentColor;
  border-radius: 5px;
  box-sizing: border-box;
}

.foundation-summary {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 130px minmax(0, 1fr) 500px;
  gap: 34px;
  align-items: center;
  margin-top: 78px;
  border: 1px solid var(--foundation-border);
  border-radius: 26px;
  padding: 36px 42px;
  background: rgba(255, 255, 255, 0.93);
  box-shadow: 0 20px 60px rgba(23, 91, 170, 0.10);
}

.summary-mark {
  display: grid;
  place-items: center;
  width: 94px;
  height: 94px;
  border: 1px solid rgba(30, 111, 234, 0.16);
  border-radius: 999px;
  background: linear-gradient(180deg, #fff, #eef7ff);
  box-shadow: 0 16px 34px rgba(23, 91, 170, 0.12);
}

.summary-mark span {
  position: relative;
  width: 46px;
  height: 34px;
  transform: skewY(-22deg);
}

.summary-mark span,
.summary-mark span::before,
.summary-mark span::after {
  display: block;
  border-radius: 8px;
  background: linear-gradient(135deg, #1e6fea, #7fb6ff);
}

.summary-mark span::before,
.summary-mark span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 46px;
  height: 34px;
}

.summary-mark span::before {
  top: 12px;
  opacity: 0.68;
}

.summary-mark span::after {
  top: 24px;
  opacity: 0.42;
}

.summary-copy {
  border-left: 1px solid rgba(30, 111, 234, 0.18);
  padding-left: 34px;
}

.summary-copy h3 {
  margin: 0;
  color: var(--foundation-text);
  font-size: 34px;
  letter-spacing: -0.034em;
}

.summary-copy p {
  max-width: 700px;
  margin: 12px 0 0;
  color: #415268;
  font-size: 16px;
  line-height: 1.72;
}

.summary-abilities {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  border-left: 1px solid rgba(30, 111, 234, 0.18);
  padding-left: 34px;
}

.summary-abilities span {
  min-height: 62px;
  display: flex;
  align-items: center;
  border: 1px solid rgba(30, 111, 234, 0.22);
  border-radius: 13px;
  padding: 0 22px;
  color: #0c3571;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 12px 26px rgba(23, 91, 170, 0.08);
  font-size: 18px;
  font-weight: 780;
}

@media (max-width: 1180px) {
  .foundation-header,
  .foundation-summary {
    grid-template-columns: 1fr;
  }

  .foundation-header blockquote {
    margin-top: 0;
  }

  .foundation-path-wrap {
    min-height: auto;
  }

  .foundation-path {
    display: none;
  }

  .foundation-card,
  .foundation-card-01,
  .foundation-card-02,
  .foundation-card-03,
  .foundation-card-04 {
    width: 100%;
    margin: 34px 0 0;
  }

  .summary-copy,
  .summary-abilities {
    border-left: 0;
    padding-left: 0;
  }
}

/* Final review overrides, loaded last on purpose */
.undergraduate-foundation {
  padding-top: clamp(58px, 5vw, 78px) !important;
  padding-bottom: clamp(64px, 5.4vw, 88px) !important;
}

.undergraduate-foundation .foundation-header {
  margin-bottom: 44px !important;
}

.undergraduate-foundation .foundation-kicker {
  margin-bottom: 18px !important;
  font-size: 16px !important;
}

.undergraduate-foundation .foundation-header h2 {
  font-size: clamp(46px, 3.75vw, 64px) !important;
  line-height: 1.04 !important;
  letter-spacing: -0.038em !important;
}

.undergraduate-foundation .foundation-header p:not(.foundation-kicker) {
  margin-top: 18px !important;
  font-size: 16px !important;
  line-height: 1.72 !important;
}

.undergraduate-foundation .foundation-header blockquote {
  margin-top: 44px !important;
  font-size: 22px !important;
  line-height: 1.72 !important;
}

.undergraduate-foundation .foundation-path-wrap {
  min-height: 1520px !important;
}

.undergraduate-foundation .foundation-card {
  padding: 32px 36px 22px !important;
}

.undergraduate-foundation .foundation-card h3 {
  font-size: 31px !important;
}

.undergraduate-foundation .foundation-card-02 {
  margin-top: -94px !important;
}

.undergraduate-foundation .foundation-card-03 {
  margin-top: -78px !important;
}

.undergraduate-foundation .foundation-card-04 {
  margin-top: -76px !important;
}

.undergraduate-foundation .foundation-summary {
  margin-top: 50px !important;
  padding: 30px 38px !important;
  grid-template-columns: 128px minmax(0, 1fr) 500px !important;
}

.undergraduate-foundation .summary-mark {
  justify-self: center !important;
  align-self: center !important;
}

.undergraduate-foundation .summary-mark span {
  transform: translateY(-12px) skewY(-22deg) !important;
}

.proposal-topic-copy h3 {
  font-size: 50px !important;
  max-width: 9.6em !important;
  line-height: 1.05 !important;
}

/* Paper capability page and latest annotation refinements */
.undergraduate-foundation .foundation-header blockquote {
  justify-self: center !important;
  width: min(460px, 100%) !important;
  padding: 34px 72px !important;
  text-align: center !important;
}

.undergraduate-foundation .foundation-header blockquote::before {
  left: 18px !important;
  top: -2px !important;
}

.undergraduate-foundation .foundation-header blockquote::after {
  right: 20px !important;
  bottom: -8px !important;
}

.undergraduate-foundation .foundation-header blockquote span {
  display: block !important;
  text-align: center !important;
}

.undergraduate-foundation .summary-abilities span {
  justify-content: center !important;
  text-align: center !important;
}

.undergraduate-foundation .foundation-summary {
  margin-top: 72px !important;
}

.dossier-grid > section:not(:first-child) {
  margin-top: 104px !important;
}

.paper-capability-page {
  --pub-blue: #1268b3;
  --pub-blue-deep: #0b1d35;
  --pub-blue-soft: #eaf5ff;
  --pub-blue-pale: #f7fbff;
  --pub-text: #0b1d35;
  --pub-muted: #5d6d82;
  --pub-border: rgba(143, 188, 232, 0.46);
  --pub-card: rgba(255, 255, 255, 0.9);
  --pub-shadow: 0 18px 50px rgba(25, 82, 140, 0.08);
  background:
    radial-gradient(circle at 82% 10%, rgba(226, 244, 255, 0.64), transparent 34%),
    linear-gradient(180deg, #f8fcff 0%, #ffffff 100%) !important;
  color: var(--pub-text);
}

.paper-capability-page .paper-switch-main {
  width: min(1460px, calc(100% - 120px)) !important;
  display: grid !important;
  grid-template-columns: 300px minmax(0, 1fr) !important;
  gap: 56px !important;
  padding: 88px 0 96px !important;
  margin: 0 auto !important;
}

.paper-capability-page .paper-switch-nav {
  position: sticky !important;
  top: 82px !important;
  align-self: start !important;
  max-height: calc(100vh - 104px) !important;
  overflow-y: auto !important;
  padding: 2px 10px 12px 0 !important;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
}

.paper-capability-page .paper-switch-intro {
  margin: 0 0 18px !important;
  padding: 0 0 20px !important;
  border-bottom: 1px solid rgba(18, 104, 179, 0.16) !important;
}

.paper-capability-page .paper-switch-intro h1 {
  margin: 0 !important;
  color: var(--pub-text) !important;
  font-size: 44px !important;
  line-height: 1.02 !important;
  letter-spacing: -0.04em !important;
}

.paper-capability-page .paper-switch-intro span,
.paper-capability-page .paper-switch-intro p,
.paper-capability-page .publication-direction-tags {
  display: none !important;
}

.paper-capability-page .paper-switch-nav button {
  position: relative !important;
  display: grid !important;
  grid-template-columns: 38px 1fr !important;
  gap: 10px 0 !important;
  width: 100% !important;
  margin: 0 !important;
  padding: 17px 15px !important;
  border: 1px solid transparent !important;
  border-bottom-color: rgba(18, 104, 179, 0.13) !important;
  border-radius: 14px !important;
  background: transparent !important;
  box-shadow: none !important;
  text-align: left !important;
  transition: background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.paper-capability-page .paper-switch-nav button::before {
  display: none !important;
}

.paper-capability-page .paper-switch-nav button:hover {
  transform: translateX(3px) !important;
  background: rgba(234, 245, 255, 0.56) !important;
}

.paper-capability-page .paper-switch-nav button.active {
  background: linear-gradient(90deg, rgba(234, 245, 255, 0.96), rgba(255, 255, 255, 0.72)) !important;
  border-color: rgba(18, 104, 179, 0.28) !important;
  box-shadow: inset 3px 0 0 var(--pub-blue) !important;
}

.paper-capability-page .paper-switch-nav button span {
  grid-row: 1 / span 2 !important;
  color: var(--pub-blue) !important;
  font-size: 15px !important;
  font-weight: 820 !important;
  letter-spacing: 0.02em !important;
}

.paper-capability-page .paper-switch-nav button strong {
  color: var(--pub-text) !important;
  font-size: 17px !important;
  line-height: 1.45 !important;
  font-weight: 800 !important;
}

.paper-capability-page .paper-switch-nav button small {
  color: var(--pub-muted) !important;
  font-size: 13px !important;
}

.paper-capability-page .paper-switch-stage {
  min-width: 0 !important;
}

.paper-capability-page .paper-panel {
  max-width: 1080px !important;
  margin: 0 !important;
}

.paper-capability-page .paper-panel.active {
  display: block !important;
  animation: paperPanelIn 420ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

@keyframes paperPanelIn {
  from {
    opacity: 0;
    transform: translateY(12px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.paper-capability-page .paper-panel-head {
  padding: 0 0 30px !important;
  border: 0 !important;
  border-bottom: 1px solid rgba(18, 104, 179, 0.15) !important;
  background: transparent !important;
}

.paper-capability-page .paper-panel-head > p:first-child {
  margin: 0 0 18px !important;
  color: var(--pub-blue) !important;
  font-size: 14px !important;
  font-weight: 820 !important;
  letter-spacing: 0.08em !important;
  text-transform: uppercase !important;
}

.paper-capability-page .paper-panel-head h2 {
  max-width: 920px !important;
  margin: 0 !important;
  color: var(--pub-text) !important;
  font-size: clamp(44px, 3.8vw, 68px) !important;
  line-height: 1.02 !important;
  letter-spacing: -0.045em !important;
  text-wrap: balance;
}

.paper-capability-page .paper-panel-head h3 {
  max-width: 880px !important;
  margin: 16px 0 0 !important;
  color: #4e5e73 !important;
  font-size: 20px !important;
  line-height: 1.55 !important;
  font-weight: 720 !important;
}

.paper-capability-page .paper-panel .paper-info {
  max-width: 880px !important;
  margin-top: 18px !important;
  color: #506178 !important;
  font-size: 16px !important;
  line-height: 1.72 !important;
}

.paper-capability-page .paper-tags {
  margin-top: 18px !important;
}

.paper-capability-page .paper-tags span {
  border: 1px solid rgba(18, 104, 179, 0.2) !important;
  background: rgba(234, 245, 255, 0.78) !important;
  color: var(--pub-blue) !important;
}

.paper-capability-page .paper-showcase {
  display: grid !important;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1fr) !important;
  gap: 36px !important;
  align-items: stretch !important;
  margin: 38px 0 48px !important;
  padding: 0 !important;
  background: transparent !important;
  border: 0 !important;
}

.paper-capability-page .paper-figure {
  margin: 0 !important;
  border: 1px solid var(--pub-border) !important;
  border-radius: 18px !important;
  overflow: hidden !important;
  background: #fff !important;
  box-shadow: var(--pub-shadow) !important;
}

.paper-capability-page .paper-figure img {
  width: 100% !important;
  height: auto !important;
  max-height: 520px !important;
  display: block !important;
  object-fit: contain !important;
  background: #fff !important;
}

.paper-capability-page .paper-brief {
  align-self: stretch !important;
  margin: 0 !important;
  padding: 8px 0 8px 34px !important;
  border: 0 !important;
  border-left: 1px solid rgba(18, 104, 179, 0.16) !important;
  background: transparent !important;
}

.paper-capability-page .paper-brief span,
.paper-capability-page .paper-section-title span {
  color: var(--pub-blue) !important;
  font-size: 13px !important;
  font-weight: 850 !important;
  letter-spacing: 0.08em !important;
  text-transform: uppercase !important;
}

.paper-capability-page .paper-brief p,
.paper-capability-page .paper-brief li {
  color: #405269 !important;
  font-size: 16px !important;
  line-height: 1.82 !important;
}

.paper-capability-page .paper-brief ul {
  margin: 18px 0 0 !important;
  padding-left: 20px !important;
}

.paper-capability-page .paper-data-grid {
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  gap: 0 !important;
  margin: 50px 0 54px !important;
  border: 1px solid var(--pub-border) !important;
  border-radius: 18px !important;
  overflow: hidden !important;
  background: rgba(255, 255, 255, 0.76) !important;
  box-shadow: var(--pub-shadow) !important;
}

.paper-capability-page .paper-data-grid section {
  min-height: 184px !important;
  padding: 26px 24px !important;
  border: 0 !important;
  border-right: 1px solid rgba(18, 104, 179, 0.13) !important;
  border-radius: 0 !important;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.84), rgba(247, 251, 255, 0.72)) !important;
  box-shadow: none !important;
}

.paper-capability-page .paper-data-grid section:last-child {
  border-right: 0 !important;
}

.paper-capability-page .paper-data-grid span {
  display: block !important;
  color: var(--pub-blue) !important;
  font-size: 13px !important;
  font-weight: 820 !important;
  letter-spacing: 0.04em !important;
}

.paper-capability-page .paper-data-grid strong {
  display: block !important;
  margin-top: 18px !important;
  color: var(--pub-text) !important;
  font-size: 34px !important;
  line-height: 1.05 !important;
  letter-spacing: -0.04em !important;
  white-space: nowrap !important;
}

.paper-capability-page .paper-data-grid p {
  margin: 16px 0 0 !important;
  color: #51657d !important;
  font-size: 15px !important;
  line-height: 1.62 !important;
}

.paper-capability-page .paper-section-title {
  margin: 0 0 18px !important;
}

.paper-capability-page .paper-section-title h4 {
  margin: 8px 0 0 !important;
  color: var(--pub-text) !important;
  font-size: 28px !important;
  line-height: 1.24 !important;
  letter-spacing: -0.03em !important;
}

.paper-capability-page .method-flow {
  display: grid !important;
  grid-template-columns: repeat(auto-fit, minmax(112px, 1fr)) !important;
  gap: 0 !important;
  margin: 22px 0 48px !important;
  border: 1px solid var(--pub-border) !important;
  border-radius: 16px !important;
  overflow: hidden !important;
  background: rgba(255, 255, 255, 0.8) !important;
  box-shadow: var(--pub-shadow) !important;
}

.paper-capability-page .method-flow span {
  min-height: 68px !important;
  display: grid !important;
  place-items: center !important;
  padding: 12px 14px !important;
  border: 0 !important;
  border-right: 1px solid rgba(18, 104, 179, 0.13) !important;
  border-radius: 0 !important;
  color: #0e427f !important;
  background: transparent !important;
  font-size: 14px !important;
  font-weight: 760 !important;
  text-align: center !important;
  white-space: nowrap !important;
}

.paper-capability-page .method-flow span:last-child {
  border-right: 0 !important;
}

.paper-capability-page .paper-evidence-gallery {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 22px !important;
  margin: 24px 0 60px !important;
}

.paper-capability-page .evidence-card {
  min-height: 260px !important;
  padding: 26px 28px !important;
  border: 1px solid var(--pub-border) !important;
  border-radius: 18px !important;
  background: rgba(255, 255, 255, 0.84) !important;
  box-shadow: var(--pub-shadow) !important;
}

.paper-capability-page .evidence-card h5 {
  margin: 0 0 18px !important;
  color: var(--pub-text) !important;
  font-size: 20px !important;
  letter-spacing: -0.02em !important;
}

.paper-capability-page .evidence-card p {
  color: #4e6077 !important;
  font-size: 15px !important;
  line-height: 1.72 !important;
}

.paper-capability-page .translation-matrix {
  width: 100% !important;
  border-collapse: collapse !important;
  table-layout: auto !important;
}

.paper-capability-page .translation-matrix th,
.paper-capability-page .translation-matrix td {
  white-space: nowrap !important;
  padding: 12px 10px !important;
  border-bottom: 1px solid rgba(18, 104, 179, 0.12) !important;
  font-size: 14px !important;
  text-align: left !important;
}

.paper-capability-page .paper-deep-grid {
  position: relative !important;
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 0 !important;
  margin: 74px 0 18px !important;
  border: 1px solid var(--pub-border) !important;
  border-radius: 18px !important;
  background: rgba(255, 255, 255, 0.86) !important;
  box-shadow: var(--pub-shadow) !important;
}

.paper-capability-page .paper-deep-grid::before {
  content: "申博支撑区";
  position: absolute;
  left: 0;
  top: -40px;
  color: var(--pub-blue);
  font-size: 14px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.paper-capability-page .paper-deep-grid section {
  padding: 28px 28px 30px !important;
  border-right: 1px solid rgba(18, 104, 179, 0.13) !important;
}

.paper-capability-page .paper-deep-grid section:last-child {
  border-right: 0 !important;
}

.paper-capability-page .paper-deep-grid h4 {
  margin: 0 0 14px !important;
  color: var(--pub-text) !important;
  font-size: 21px !important;
}

.paper-capability-page .paper-deep-grid p {
  margin: 0 !important;
  color: #475a71 !important;
  font-size: 15px !important;
  line-height: 1.74 !important;
}

.paper-capability-page .model-ring {
  align-items: center !important;
  justify-content: center !important;
  text-align: center !important;
}

.paper-capability-page .model-ring span {
  display: grid !important;
  place-items: center !important;
  text-align: center !important;
}

.project-full-portfolio {
  padding-top: 34px !important;
}

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

.project-full-portfolio .project-page-grid figure {
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(143, 188, 232, 0.45);
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 16px 34px rgba(25, 82, 140, 0.08);
}

.project-full-portfolio .project-page-grid img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  background: #fff;
}

.project-full-portfolio .project-page-grid figcaption {
  padding: 10px 14px;
  border-top: 1px solid rgba(143, 188, 232, 0.28);
  color: #42607d;
  background: rgba(247, 251, 255, 0.92);
  font-size: 13px;
  font-weight: 760;
}

/* Final pass: paper steps alignment and project evidence as full vertical pages */
.paper-capability-page .method-flow {
  counter-reset: method-step !important;
}

.paper-capability-page .method-flow span {
  display: flex !important;
  align-items: center !important;
  justify-content: flex-start !important;
  gap: 9px !important;
  text-align: left !important;
  line-height: 1.2 !important;
}

.paper-capability-page .method-flow span::before {
  counter-increment: method-step;
  content: counter(method-step, decimal-leading-zero);
  flex: 0 0 24px;
  color: #1268b3;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.02em;
}

.paper-capability-page .sample-chip-grid,
.paper-capability-page .dimension-chip-grid {
  display: grid;
  gap: 10px;
  margin: 4px 0 18px;
}

.paper-capability-page .sample-chip-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.paper-capability-page .dimension-chip-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.paper-capability-page .sample-chip-grid span,
.paper-capability-page .dimension-chip-grid span {
  min-height: 38px;
  display: flex;
  align-items: center;
  padding: 9px 12px;
  border: 1px solid rgba(18, 104, 179, 0.18);
  border-radius: 12px;
  color: #123456;
  background: linear-gradient(180deg, rgba(246, 251, 255, 0.96), rgba(234, 244, 255, 0.72));
  font-size: 13px;
  font-weight: 760;
  line-height: 1.32;
}

.paper-capability-page .dimension-chip-grid span {
  color: #0d5da5;
}

.paper-capability-page .evidence-card {
  box-shadow: 0 18px 38px rgba(21, 80, 139, 0.08) !important;
}

.project-process-page .project-panel > .process-block:has(.evidence-grid) .evidence-grid {
  grid-template-columns: 1fr !important;
  gap: 26px !important;
}

.project-process-page .project-panel > .process-block:has(.evidence-grid) .evidence-grid figure {
  overflow: hidden !important;
  border: 1px solid rgba(143, 188, 232, 0.42) !important;
  border-radius: 18px !important;
  background: #fff !important;
  box-shadow: 0 22px 46px rgba(28, 86, 145, 0.1) !important;
}

.project-process-page .project-panel > .process-block:has(.evidence-grid) .evidence-grid img {
  width: 100% !important;
  height: auto !important;
  max-height: none !important;
  display: block !important;
  object-fit: contain !important;
  background: #fff !important;
}

.project-process-page .project-panel > .process-block:has(.evidence-grid) .evidence-grid figcaption {
  display: flex !important;
  align-items: baseline !important;
  gap: 12px !important;
  padding: 13px 18px !important;
  border-top: 1px solid rgba(143, 188, 232, 0.28) !important;
  color: #476178 !important;
  background: rgba(247, 251, 255, 0.96) !important;
  font-size: 13px !important;
  line-height: 1.45 !important;
}

.project-process-page .project-panel > .process-block:has(.evidence-grid) .evidence-grid figcaption b {
  flex: 0 0 auto !important;
  color: #1268b3 !important;
  font-size: 13px !important;
  letter-spacing: 0.02em !important;
}

/* Final publish pass: compact undergraduate path, full project evidence, redesigned paper detail pages */
.undergraduate-foundation .foundation-path-wrap {
  min-height: 1280px !important;
  margin-top: -12px !important;
}

.undergraduate-foundation .foundation-card {
  padding: 28px 34px 20px !important;
}

.undergraduate-foundation .foundation-card-02 {
  margin-top: -165px !important;
}

.undergraduate-foundation .foundation-card-03 {
  margin-top: -158px !important;
}

.undergraduate-foundation .foundation-card-04 {
  margin-top: -158px !important;
}

.undergraduate-foundation .foundation-summary {
  margin-top: 42px !important;
}

.project-process-page .project-panel > .process-block:has(.evidence-grid) .evidence-grid {
  gap: 24px !important;
}

.project-process-page .project-panel > .process-block:has(.evidence-grid) .evidence-grid figcaption {
  display: block !important;
  padding: 13px 18px !important;
}

.project-process-page .project-panel > .process-block:has(.evidence-grid) .evidence-grid figcaption b {
  color: #3f5d76 !important;
  font-size: 13px !important;
  font-weight: 760 !important;
  letter-spacing: 0 !important;
}

.paper-capability-page {
  --paper-blue: #1268d9;
  --paper-deep: #0c2c5a;
  --paper-ink: #10294c;
  --paper-muted: #4f6680;
  --paper-line: rgba(93, 158, 228, 0.24);
  --paper-soft: rgba(238, 247, 255, 0.72);
  --paper-card: rgba(255, 255, 255, 0.88);
}

.paper-capability-page .paper-switch-main {
  width: min(1480px, calc(100% - 112px)) !important;
  grid-template-columns: 300px minmax(0, 1fr) !important;
  gap: 44px !important;
  align-items: start !important;
}

.paper-capability-page .paper-switch-nav {
  top: 78px !important;
  padding-top: 18px !important;
}

.paper-capability-page .paper-switch-intro {
  padding-bottom: 22px !important;
  margin-bottom: 18px !important;
}

.paper-capability-page .paper-switch-intro h1 {
  font-size: 34px !important;
  letter-spacing: -0.03em !important;
}

.paper-capability-page .paper-switch-nav button {
  grid-template-columns: 44px minmax(0, 1fr) !important;
  align-items: center !important;
  min-height: 92px !important;
  padding: 18px 18px !important;
  border-radius: 10px !important;
  background: rgba(255, 255, 255, 0.56) !important;
}

.paper-capability-page .paper-switch-nav button span {
  width: 34px !important;
  height: 34px !important;
  display: grid !important;
  place-items: center !important;
  align-self: center !important;
  justify-self: start !important;
  border-radius: 999px !important;
  background: rgba(235, 245, 255, 0.96) !important;
  color: var(--paper-deep) !important;
  font-size: 13px !important;
}

.paper-capability-page .paper-switch-nav button.active span {
  background: var(--paper-blue) !important;
  color: #fff !important;
}

.paper-capability-page .paper-switch-nav button strong,
.paper-capability-page .paper-switch-nav button small {
  grid-column: 2 !important;
  align-self: center !important;
}

.paper-capability-page .paper-switch-nav button strong {
  font-size: 15px !important;
  line-height: 1.35 !important;
}

.paper-capability-page .paper-switch-nav button small {
  margin-top: 5px !important;
}

.paper-capability-page .paper-switch-stage {
  min-width: 0 !important;
}

.paper-capability-page .paper-redesign-panel {
  max-width: 1120px !important;
  padding: 52px 0 60px !important;
}

.paper-capability-page .paper-redesign-panel .paper-panel-head {
  position: relative !important;
  padding: 0 0 28px !important;
  border-bottom: 1px solid rgba(18, 104, 217, 0.14) !important;
}

.paper-capability-page .paper-redesign-panel .paper-panel-head::after {
  content: "";
  position: absolute;
  right: -10px;
  top: -46px;
  width: 420px;
  height: 210px;
  pointer-events: none;
  opacity: 0.48;
  background:
    radial-gradient(circle at 80% 20%, rgba(183, 218, 255, 0.42), transparent 34%),
    repeating-radial-gradient(circle at 100% 0%, rgba(18, 104, 217, 0.12) 0 1px, transparent 1px 18px);
  mask-image: linear-gradient(90deg, transparent, #000 28%, #000);
}

.paper-capability-page .paper-redesign-panel .paper-panel-head > p:first-child {
  margin-bottom: 20px !important;
  color: var(--paper-blue) !important;
  font-size: 15px !important;
  font-weight: 900 !important;
}

.paper-capability-page .paper-redesign-panel .paper-panel-head h2 {
  max-width: 940px !important;
  color: var(--paper-ink) !important;
  font-size: clamp(42px, 4.4vw, 62px) !important;
  line-height: 1.04 !important;
  letter-spacing: -0.035em !important;
}

.paper-capability-page .paper-redesign-panel .paper-panel-head h3 {
  max-width: 900px !important;
  margin-top: 14px !important;
  color: #385f8c !important;
  font-size: 21px !important;
  line-height: 1.42 !important;
}

.paper-capability-page .paper-redesign-panel .paper-info {
  max-width: 940px !important;
  color: #36516d !important;
  font-size: 16px !important;
}

.paper-capability-page .paper-redesign-panel .paper-tags {
  margin-top: 20px !important;
}

.paper-capability-page .paper-redesign-panel .paper-tags span {
  border-color: rgba(18, 104, 217, 0.22) !important;
  color: var(--paper-blue) !important;
  background: rgba(239, 247, 255, 0.84) !important;
}

.paper-capability-page .paper-module {
  margin-top: 22px !important;
  padding: 24px 28px !important;
  border: 1px solid var(--paper-line) !important;
  border-radius: 14px !important;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(249, 253, 255, 0.82)),
    linear-gradient(rgba(18, 104, 217, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(18, 104, 217, 0.035) 1px, transparent 1px) !important;
  background-size: auto, 42px 42px, 42px 42px !important;
  box-shadow: 0 20px 44px rgba(27, 93, 160, 0.07) !important;
}

.paper-capability-page .paper-module h4 {
  display: flex !important;
  align-items: baseline !important;
  gap: 12px !important;
  margin: 0 0 22px !important;
  color: var(--paper-blue) !important;
  font-size: 22px !important;
  line-height: 1.1 !important;
}

.paper-capability-page .paper-module h4 b {
  color: var(--paper-blue) !important;
  font-size: 36px !important;
  line-height: 1 !important;
}

.paper-capability-page .paper-module h4 small {
  color: var(--paper-blue) !important;
  font-size: 12px !important;
  font-weight: 850 !important;
  letter-spacing: 0.06em !important;
  text-transform: uppercase !important;
}

.paper-capability-page .proposition-grid {
  display: grid !important;
  grid-template-columns: minmax(280px, 0.42fr) minmax(0, 0.58fr) !important;
  gap: 36px !important;
  align-items: center !important;
}

.paper-capability-page .proposition-grid figure {
  margin: 0 !important;
  padding: 16px !important;
  border: 1px solid rgba(18, 104, 217, 0.20) !important;
  border-radius: 10px !important;
  background: rgba(255, 255, 255, 0.72) !important;
}

.paper-capability-page .proposition-grid img {
  width: 100% !important;
  height: auto !important;
  max-height: 380px !important;
  object-fit: contain !important;
  display: block !important;
}

.paper-capability-page .proposition-grid p,
.paper-capability-page .proposition-grid li {
  color: var(--paper-muted) !important;
  font-size: 16px !important;
  line-height: 1.85 !important;
}

.paper-capability-page .proposition-grid ul {
  margin: 22px 0 0 !important;
  padding-left: 20px !important;
}

.paper-capability-page .proposition-grid li::marker,
.paper-capability-page .finding-list p::marker {
  color: var(--paper-blue) !important;
}

.paper-capability-page .metric-card-grid {
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  gap: 18px !important;
}

.paper-capability-page .metric-card-grid section {
  min-height: 166px !important;
  padding: 22px 20px !important;
  border: 1px solid rgba(18, 104, 217, 0.20) !important;
  border-radius: 12px !important;
  background: rgba(255, 255, 255, 0.82) !important;
}

.paper-capability-page .metric-card-grid span {
  color: var(--paper-deep) !important;
  font-size: 15px !important;
  font-weight: 850 !important;
}

.paper-capability-page .metric-card-grid strong {
  display: block !important;
  margin: 18px 0 10px !important;
  color: var(--paper-blue) !important;
  font-size: 32px !important;
  line-height: 1.05 !important;
}

.paper-capability-page .metric-card-grid p,
.paper-capability-page .method-card-grid p,
.paper-capability-page .finding-list p,
.paper-capability-page .translation-grid span {
  color: var(--paper-muted) !important;
  font-size: 15px !important;
  line-height: 1.72 !important;
}

.paper-capability-page .paper-flow {
  display: grid !important;
  grid-template-columns: repeat(8, minmax(0, 1fr)) !important;
  gap: 12px !important;
}

.paper-capability-page .paper-flow span {
  position: relative !important;
  min-height: 70px !important;
  display: grid !important;
  place-items: center !important;
  padding: 12px 10px !important;
  border: 1px solid rgba(18, 104, 217, 0.22) !important;
  border-radius: 999px !important;
  color: var(--paper-deep) !important;
  background: rgba(242, 248, 255, 0.84) !important;
  font-size: 13px !important;
  font-weight: 850 !important;
  text-align: center !important;
}

.paper-capability-page .method-card-grid {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 18px !important;
}

.paper-capability-page .method-card-grid section {
  min-height: 150px !important;
  padding: 22px 24px !important;
  border: 1px solid rgba(18, 104, 217, 0.18) !important;
  border-radius: 12px !important;
  background: rgba(255, 255, 255, 0.76) !important;
}

.paper-capability-page .method-card-grid h5 {
  margin: 0 0 12px !important;
  color: var(--paper-blue) !important;
  font-size: 18px !important;
}

.paper-capability-page .finding-list {
  display: grid !important;
  gap: 12px !important;
}

.paper-capability-page .finding-list p {
  margin: 0 !important;
  padding: 14px 16px !important;
  border-radius: 10px !important;
  background: rgba(241, 248, 255, 0.78) !important;
}

.paper-capability-page .finding-list b {
  color: var(--paper-deep) !important;
}

.paper-capability-page .translation-grid {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 14px !important;
}

.paper-capability-page .translation-grid span {
  min-height: 58px !important;
  display: flex !important;
  align-items: center !important;
  padding: 14px 16px !important;
  border: 1px solid rgba(18, 104, 217, 0.18) !important;
  border-radius: 12px !important;
  background: rgba(255, 255, 255, 0.82) !important;
  font-weight: 760 !important;
}

@media (max-width: 1180px) {
  .paper-capability-page .paper-switch-main {
    width: min(100% - 48px, 1180px) !important;
    grid-template-columns: 1fr !important;
  }

  .paper-capability-page .paper-switch-nav {
    position: relative !important;
    top: auto !important;
  }

  .paper-capability-page .metric-card-grid,
  .paper-capability-page .paper-flow,
  .paper-capability-page .method-card-grid,
  .paper-capability-page .translation-grid,
  .paper-capability-page .proposition-grid {
    grid-template-columns: 1fr !important;
  }
}

/* Final requested polish: compact undergraduate path, no-wrap paper controls, proposal tab text system */
.undergraduate-foundation .foundation-path-wrap {
  min-height: 1180px !important;
  margin-top: -18px !important;
}

.undergraduate-foundation .foundation-card {
  padding-top: 24px !important;
  padding-bottom: 18px !important;
}

.undergraduate-foundation .foundation-card-02 {
  margin-top: -205px !important;
}

.undergraduate-foundation .foundation-card-03 {
  margin-top: -198px !important;
}

.undergraduate-foundation .foundation-card-04 {
  margin-top: -198px !important;
}

.undergraduate-foundation .foundation-summary {
  margin-top: 30px !important;
}

.paper-capability-page .paper-switch-nav button strong,
.paper-capability-page .paper-switch-nav button small,
.paper-capability-page .paper-flow span,
.paper-capability-page .paper-tags span,
.paper-capability-page .metric-card-grid span,
.paper-capability-page .method-card-grid h5 {
  white-space: nowrap !important;
}

.paper-capability-page .paper-switch-nav button strong {
  font-size: 14px !important;
  line-height: 1.2 !important;
}

.paper-capability-page .paper-switch-nav button small {
  font-size: 12px !important;
}

.paper-capability-page .paper-flow {
  display: flex !important;
  flex-wrap: nowrap !important;
  gap: 10px !important;
}

.paper-capability-page .paper-flow span {
  flex: 1 1 0 !important;
  min-width: 0 !important;
  min-height: 56px !important;
  padding: 10px 8px !important;
  font-size: 12px !important;
}

.dossier-grid > section:not(:first-child) {
  margin-top: 120px !important;
}

.dossier-grid > section:nth-child(2)::before {
  top: -52px !important;
}

.dossier-grid > section:nth-child(2)::after {
  top: -29px !important;
}

#proposal .proposal-topic-card {
  grid-template-columns: minmax(360px, 0.86fr) minmax(540px, 1.14fr) !important;
  align-items: stretch !important;
}

#proposal .proposal-topic-copy p {
  max-width: 58ch !important;
}

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

.proposal-info-stack section {
  min-height: 132px;
  padding: 18px 20px;
  border: 1px solid rgba(38, 128, 210, 0.18);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(244, 250, 255, 0.78));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.86);
}

.proposal-info-stack span,
.proposal-panel-label,
#proposal .proposal-screen-head span {
  color: #0870bd;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.proposal-info-stack strong {
  display: block;
  margin: 8px 0 7px;
  color: #102b4c;
  font-size: 21px;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.proposal-info-stack p {
  margin: 0;
  color: #48627c;
  font-size: 14px;
  line-height: 1.72;
}

.proposal-info-stack .proposal-method-tags {
  margin-top: 10px;
}

#proposal .proposal-method-tags i,
#proposal .phase-card dd i {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  margin: 0 6px 7px 0;
  padding: 0 11px;
  border: 1px solid rgba(38, 128, 210, 0.22);
  border-radius: 999px;
  background: rgba(238, 247, 255, 0.86);
  color: #0870bd;
  font-size: 13px;
  font-style: normal;
  font-weight: 780;
  white-space: nowrap;
}

#proposal .rq-chain-wrap {
  margin-top: 22px !important;
}

#proposal .rq-chain {
  align-items: stretch !important;
}

#proposal .rq-chain section {
  display: flex !important;
  flex-direction: column !important;
  min-height: 260px !important;
}

#proposal .rq-chain section small {
  margin-top: auto !important;
}

#proposal .framework-stage-grid {
  gap: 16px !important;
}

#proposal .phase-card {
  min-height: 410px !important;
}

#proposal .phase-card dl {
  display: grid;
  gap: 9px;
}

#proposal .phase-card dd {
  color: #455f7b;
  line-height: 1.68;
}

#proposal .research-loop,
#proposal .extension-card {
  margin-top: 18px !important;
  border-color: rgba(38, 128, 210, 0.18) !important;
  background: linear-gradient(90deg, rgba(237, 247, 255, 0.92), rgba(255, 255, 255, 0.86)) !important;
}

#proposal .foundation-matrix .matrix-head span {
  white-space: nowrap;
}

#proposal .contribution-grid section em {
  display: block;
  margin-top: 14px;
  color: #0870bd;
  font-size: 12px;
  font-style: normal;
  font-weight: 900;
  letter-spacing: 0.06em;
}

/* Restore proposal topic system diagram on the right side */
#proposal .proposal-topic-card .system-map {
  min-height: 380px !important;
  width: 100% !important;
  margin: 0 !important;
  align-self: center !important;
  border-radius: 22px !important;
  background:
    radial-gradient(circle at 50% 50%, rgba(42, 142, 214, 0.10), transparent 36%),
    linear-gradient(180deg, rgba(247, 252, 255, 0.88), rgba(235, 247, 255, 0.62)) !important;
}

#proposal .proposal-topic-card .system-core {
  left: 50% !important;
  top: 50% !important;
  transform: translate(-50%, -50%) !important;
}

#proposal .proposal-topic-card .system-node {
  max-width: 210px !important;
}

#proposal .proposal-topic-card .node-a {
  left: 42% !important;
  top: 8% !important;
}

#proposal .proposal-topic-card .node-b {
  right: 4% !important;
  top: 27% !important;
}

#proposal .proposal-topic-card .node-c {
  right: 8% !important;
  bottom: 8% !important;
}

#proposal .proposal-topic-card .node-d {
  left: 8% !important;
  bottom: 8% !important;
}

#proposal .proposal-topic-card .node-e {
  left: 4% !important;
  top: 30% !important;
}

/* Final annotation cleanup: unified light surfaces, cleaner undergraduate cards, proposal diagram spacing */
:root {
  --site-light-bg: #eef8ff;
  --site-light-bg-soft: #f5fbff;
  --site-light-grid: rgba(18, 104, 217, 0.045);
}

body:not(:has(.hero)) {
  background-color: var(--site-light-bg);
}

.undergraduate-foundation,
#evidence,
#projects,
#proposal,
#portfolio,
body.publication-page,
body.project-process-page,
.publication-main,
.project-process-main {
  background:
    radial-gradient(760px 520px at 6% 2%, rgba(198, 232, 255, 0.72), transparent 64%),
    linear-gradient(var(--site-light-grid) 1px, transparent 1px),
    linear-gradient(90deg, var(--site-light-grid) 1px, transparent 1px),
    linear-gradient(180deg, var(--site-light-bg), var(--site-light-bg-soft) 72%, #ffffff) !important;
  background-size: auto, 88px 88px, 88px 88px, auto !important;
}

.undergraduate-foundation {
  padding-top: clamp(36px, 3.5vw, 58px) !important;
}

.undergraduate-foundation .foundation-header {
  grid-template-columns: minmax(0, 700px) 1fr !important;
  align-items: start !important;
  margin-bottom: -28px !important;
}

.undergraduate-foundation .foundation-header > div {
  margin-top: clamp(64px, 5.6vw, 100px) !important;
}

.undergraduate-foundation .foundation-header blockquote {
  display: none !important;
}

.undergraduate-foundation .foundation-path-wrap {
  margin-top: -46px !important;
}

.undergraduate-foundation .foundation-node,
.undergraduate-foundation .foundation-card::before {
  display: none !important;
  content: none !important;
}

.undergraduate-foundation .foundation-card {
  padding-top: 30px !important;
}

.resume-dossier .paper-list li::after,
.dossier-grid > section:first-child .paper-list li::after {
  display: none !important;
  content: none !important;
}

#proposal .proposal-topic-card .system-map {
  overflow: visible !important;
  min-height: 390px !important;
  padding: 12px !important;
}

#proposal .proposal-topic-card .system-node {
  max-width: 220px !important;
  min-width: 184px !important;
  white-space: normal !important;
}

#proposal .proposal-topic-card .system-node strong {
  display: block !important;
  white-space: nowrap !important;
}

#proposal .proposal-topic-card .system-node p {
  line-height: 1.45 !important;
}

#proposal .proposal-topic-card .node-a {
  left: 50% !important;
  top: 4% !important;
  right: auto !important;
  transform: translateX(-50%) !important;
}

/* Latest annotation pass: cleaner proposal foundation, tighter undergraduate path, flatter project surfaces */
.undergraduate-foundation .foundation-header > div {
  margin-top: clamp(88px, 6.4vw, 124px) !important;
}

.undergraduate-foundation .foundation-path-wrap {
  min-height: 1040px !important;
  margin-top: -58px !important;
}

.undergraduate-foundation .foundation-card-02 {
  margin-top: -255px !important;
}

.undergraduate-foundation .foundation-card-03,
.undergraduate-foundation .foundation-card-04 {
  margin-top: -248px !important;
}

.undergraduate-foundation .foundation-summary {
  display: none !important;
}

body.project-process-page,
body.project-process-page .project-process-main,
body.project-process-page .project-process-stage {
  background:
    radial-gradient(760px 520px at 6% 2%, rgba(198, 232, 255, 0.72), transparent 64%),
    linear-gradient(var(--site-light-grid) 1px, transparent 1px),
    linear-gradient(90deg, var(--site-light-grid) 1px, transparent 1px),
    linear-gradient(180deg, var(--site-light-bg), var(--site-light-bg-soft) 72%, #ffffff) !important;
  background-size: auto, 88px 88px, 88px 88px, auto !important;
}

body.project-process-page .project-process-main {
  border-left: 0 !important;
  border-right: 0 !important;
}

body.project-process-page .project-panel {
  background: rgba(255, 255, 255, 0.72) !important;
}

#proposal .proposal-topic-card .node-b {
  right: 1.5% !important;
  top: 31% !important;
}

#proposal .proposal-topic-card .node-c {
  right: 4.5% !important;
  bottom: 7% !important;
}

#proposal .proposal-topic-card .node-d {
  left: 4.5% !important;
  bottom: 7% !important;
}

#proposal .proposal-topic-card .node-e {
  left: 1.5% !important;
  top: 31% !important;
}
