@font-face {
  font-family: "DM Sans";
  src: url("fonts/dm-sans-400.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "DM Sans";
  src: url("fonts/dm-sans-500.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "DM Sans";
  src: url("fonts/dm-sans-600.ttf") format("truetype");
  font-weight: 600 800;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Instrument Serif";
  src: url("fonts/instrument-serif-400.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Instrument Serif";
  src: url("fonts/instrument-serif-400-italic.ttf") format("truetype");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
:root {
  --paper: #faf9f6;
  --ink: #2c302b;
  --muted: #646c5c;
  --accent: #a54b34;
  --line: #e2e1d8;
  --tint: #f0efe8;
  --serif: "Instrument Serif", Georgia, serif;
  --sans: "DM Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 102px;
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
::selection {
  background: #eed4c5;
  color: var(--ink);
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  font: inherit;
  color: inherit;
  cursor: pointer;
}
img,
svg {
  display: block;
  max-width: 100%;
}
h1,
h2,
h3,
h4,
p {
  margin: 0;
}
button,
a,
summary {
  -webkit-tap-highlight-color: transparent;
}
a,
button {
  transition:
    color 0.18s,
    background 0.18s,
    border-color 0.18s;
}
a:hover {
  color: var(--accent);
}
:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 5px;
  border-radius: 2px;
}
[hidden] {
  display: none !important;
}
.container {
  width: min(1100px, calc(100% - 96px));
  margin-inline: auto;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
}
.skip-link {
  position: fixed;
  z-index: 10;
  top: 10px;
  left: 12px;
  padding: 10px 16px;
  background: var(--ink);
  color: white;
  transform: translateY(-180%);
}
.skip-link:focus {
  transform: translateY(0);
}
.site-header {
  position: sticky;
  z-index: 5;
  top: 0;
  background: rgba(250, 249, 246, 0.97);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.wordmark {
  display: flex;
  align-items: center;
  white-space: nowrap;
  font-weight: 600;
  font-size: 17px;
  letter-spacing: -0.45px;
}
.wordmark-dot {
  color: var(--accent);
}
.brand-mark {
  width: 20px;
  height: 20px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3px;
  margin-right: 11px;
  transform: rotate(-6deg);
}
.brand-mark i {
  background: var(--accent);
  border-radius: 1px;
}
.brand-mark i:last-child {
  border-radius: 50%;
  opacity: 0.6;
}
.site-nav {
  display: flex;
  align-items: center;
  gap: 29px;
  font-size: 13px;
  font-weight: 500;
}
.site-nav > a {
  padding: 10px 0;
  position: relative;
}
.site-nav > a[aria-current="location"]:not(.nav-contact) {
  color: var(--accent);
}
.site-nav > a[aria-current="location"]:not(.nav-contact):after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 1px;
  bottom: 4px;
  background: var(--accent);
}
.site-nav .nav-contact {
  border-left: 1px solid var(--line);
  padding-left: 28px;
  margin-left: 4px;
}
.nav-contact span {
  padding-left: 7px;
}
.menu-toggle {
  background: none;
  border: 0;
  padding: 9px;
  font-size: 15px;
}
.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 88px;
  padding-top: 60px;
  padding-bottom: 44px;
  align-items: center;
}
.eyebrow {
  font-size: 11px;
  line-height: 1.5;
  letter-spacing: 1.65px;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--muted);
}
.intro > .eyebrow {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 9px;
}
.hero-status {
  display: inline-flex;
  align-items: center;
  gap: 9px;
}
.hero-status,
.hero-affiliation {
  white-space: nowrap;
}
.status-dot,
.tiny-dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}
.status-dot {
  box-shadow: 0 0 0 4px #a54b3410;
  width: 5px;
  height: 5px;
  margin-right: 3px;
}
.eyebrow-divider {
  color: #b5b6ac;
  margin-inline: 3px;
}
.hero h1 {
  font-family: var(--serif);
  font-size: 72px;
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -2px;
  margin: 17px 0 4px;
  white-space: nowrap;
}
.name-period,
.heading-period {
  color: var(--accent);
}
.chinese-name {
  font-family: Georgia, "Songti SC", "Noto Serif CJK SC", serif;
  color: var(--muted);
  font-size: 18px;
  letter-spacing: 3px;
}
.chinese-name > span:first-child {
  font-size: 15px;
  letter-spacing: 0;
  color: #b3b3a8;
  margin: 0 12px;
}
.chinese-name > span:last-child {
  font-family: var(--sans);
  font-size: 13px;
  letter-spacing: 1.1px;
}
.intro-statement {
  font-size: 21px;
  line-height: 1.55;
  margin-top: 26px;
  font-weight: 400;
  letter-spacing: -0.35px;
}
.intro-statement em {
  font-style: normal;
  color: var(--accent);
}
.bio {
  font-size: 15px;
  color: #62665d;
  line-height: 1.85;
  margin-top: 19px;
  max-width: 625px;
}
.bio strong {
  font-weight: 500;
  color: var(--ink);
}
.bio p + p {
  margin-top: 12px;
}
.bio a {
  color: var(--ink);
  border-bottom: 1px solid #c9c6b9;
}
.text-strong {
  color: var(--ink);
}
.profile-links {
  display: flex;
  gap: 23px;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 27px;
}
.profile-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 13px;
  font-weight: 500;
  min-height: 40px;
}
.profile-link > span {
  color: var(--accent);
  font-size: 15px;
}
.primary-link {
  background: var(--ink);
  border: 1px solid var(--ink);
  border-radius: 4px;
  padding: 0 16px;
  color: var(--paper);
}
.primary-link:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: white;
}
.primary-link svg {
  width: 16px;
  height: 16px;
}
.research-note {
  border: 1px solid #ddded3;
  border-radius: 3px;
  padding: 23px 26px;
  background: #f4f3ed;
  transform: rotate(1.5deg);
  position: relative;
  margin-top: 35px;
}
.research-note:before {
  content: "";
  position: absolute;
  inset: 7px -7px -7px 7px;
  border: 1px solid #e4e3d9;
  background: #f8f7f2;
  z-index: -1;
  border-radius: 3px;
}
.note-heading {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 17px;
  border-bottom: 1px solid #ddded3;
}
.note-heading .eyebrow {
  font-size: 11px;
  letter-spacing: 1.4px;
}
.note-star {
  font-size: 28px;
  color: var(--accent);
  line-height: 1;
}
.research-thread > a {
  display: flex;
  gap: 12px;
  align-items: baseline;
  padding: 18px 0 16px;
  border-bottom: 1px solid #ddded3;
}
.thread-number {
  font-family: var(--sans);
  font-size: 11px;
  color: #646c5c;
}
.research-thread > a > span:nth-child(2) {
  font-family: var(--serif);
  font-size: 38px;
  line-height: 1.08;
  letter-spacing: -0.4px;
}
.thread-detail {
  display: block;
  margin-top: 9px;
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0;
  color: var(--muted);
  line-height: 1.5;
}
.thread-arrow {
  margin-left: auto;
  font-size: 15px;
  color: #989a8d;
}
.thread-last {
  color: var(--accent);
}
.note-footer {
  font-size: 11px;
  color: #646c5c;
  line-height: 1.7;
  padding-top: 18px;
  display: flex;
  gap: 8px;
  align-items: flex-start;
}
.note-footer .tiny-dot {
  width: 4px;
  height: 4px;
  margin-top: 6px;
  background: #979d89;
}
.latest-update {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 18px 21px;
  background: #f0f1e9;
  border: 1px solid #e5e6dc;
  border-radius: 4px;
  font-size: 13px;
  line-height: 1.6;
}
.update-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
  white-space: nowrap;
  color: #696f5d;
}
.update-label .tiny-dot {
  background: #889476;
  width: 5px;
  height: 5px;
}
.latest-update strong {
  font-weight: 500;
}
.update-cta {
  margin-left: auto;
  white-space: nowrap;
  font-size: 11px;
  color: #657251;
}
.update-cta > span {
  margin-left: 7px;
}
.section {
  padding-top: 61px;
  padding-bottom: 70px;
}
.section-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 24px;
}
.section-number {
  color: var(--accent);
  font-size: 11px;
  letter-spacing: 1.5px;
  margin-bottom: 10px;
}
h2 {
  font-family: var(--serif);
  font-size: 44px;
  line-height: 1.1;
  font-weight: 400;
  letter-spacing: -0.7px;
}
.section-link {
  font-size: 13px;
  padding-bottom: 4px;
}
.text-link {
  color: var(--muted);
}
.text-link span {
  margin-left: 6px;
  color: var(--accent);
}
.research-toolbar {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 17px;
  align-items: center;
  margin-bottom: 27px;
}
.section-intro {
  font-size: 13px;
  color: var(--muted);
}
.filters {
  display: flex;
  gap: 4px;
  flex-wrap: wrap;
}
.filters button {
  border: 1px solid transparent;
  background: transparent;
  padding: 7px 11px;
  font-size: 11px;
  line-height: 1.5;
  border-radius: 3px;
  color: var(--muted);
  min-height: 32px;
}
.filters button:hover {
  background: #eeeee6;
  color: var(--ink);
}
.filters button[aria-pressed="true"] {
  background: var(--ink);
  color: var(--paper);
  border-color: var(--ink);
}
.publication {
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr);
  gap: 30px;
  padding: 29px 0;
  border-top: 1px solid var(--line);
  align-items: center;
}
.publication:last-child {
  padding-bottom: 0;
}
.paper-image {
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1.55;
  background: #fff;
  border: 1px solid #e6e5dc;
  border-radius: 4px;
  overflow: hidden;
  padding: 8px;
  transition:
    border-color 0.2s,
    box-shadow 0.2s;
}
.paper-image:hover {
  border-color: #b9bbaa;
  box-shadow: 0 3px 13px #353b2f09;
}
.paper-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.3s;
}
.paper-image:hover img {
  transform: scale(1.025);
}
.paper-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 8px;
}
.venue {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.55px;
  line-height: 1.65;
  color: var(--accent);
  background: #f2e7df;
  border-radius: 3px;
  padding: 2px 7px;
}
.venue.preprint {
  color: #646c5c;
  background: #edf0e4;
}
.paper-year {
  font-size: 11px;
  color: #646c5c;
}
.paper-highlight {
  font-size: 11px;
  color: var(--accent);
  margin-left: auto;
}
.paper-content h3 {
  font-size: 17px;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: -0.12px;
}
.paper-authors {
  font-size: 12px;
  color: var(--muted);
  margin-top: 6px;
}
.paper-authors strong {
  font-weight: 500;
  color: #454b3f;
}
.author-role {
  font-size: 11px;
  color: #646c5c;
  padding-left: 10px;
  margin-left: 8px;
  border-left: 1px solid var(--line);
  white-space: nowrap;
}
.paper-summary {
  font-size: 14px;
  line-height: 1.75;
  color: var(--muted);
  margin-top: 7px;
}
.paper-links {
  display: flex;
  gap: 17px;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 11px;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.6;
}
.paper-links > a {
  display: inline-flex;
  gap: 5px;
  align-items: center;
  min-height: 24px;
}
.paper-links > a > span {
  font-size: 13px;
  color: var(--accent);
}
.paper-keyword {
  margin-left: auto;
  font-size: 11px;
  color: #646c5c;
  font-weight: 400;
}
.industry-section {
  background: var(--tint);
  padding: 64px 0 49px;
  border-top: 1px solid #e8e7df;
  border-bottom: 1px solid #e4e3d9;
}
.industry-context {
  text-align: right;
  font-size: 13px;
  color: #5f6559;
  line-height: 1.8;
}
.industry-context > span {
  color: #646c5c;
  font-size: 11px;
}
.industry-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px;
  padding-top: 14px;
}
.industry-project {
  display: flex;
  flex-direction: column;
  border-top: 1px solid #c9ccbf;
  padding-top: 20px;
}
.industry-card-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}
.industry-card-top .eyebrow {
  font-size: 11px;
  letter-spacing: 1.2px;
}
.project-index {
  font-size: 11px;
  color: #646c5c;
}
.industry-project h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 33px;
  letter-spacing: -0.4px;
  line-height: 1.25;
  margin: 17px 0 14px;
}
.industry-project > p:not(.industry-footnote) {
  font-size: 14px;
  line-height: 1.85;
  color: #676e5e;
}
.industry-project .industry-footnote {
  font-size: 11px;
  color: #4d5a43;
  padding-top: 18px;
  margin-top: auto;
}
.industry-project .paper-links {
  border-top: 1px solid #d9dbd0;
  margin-top: 20px;
  padding-top: 10px;
  gap: 16px;
}
.more-reports {
  margin-top: 37px;
  border-top: 1px solid #d7d9ce;
}
.more-reports summary {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  padding: 17px 0 0;
  font-size: 13px;
  list-style: none;
  color: #676e5e;
  min-height: 44px;
}
.more-reports summary::-webkit-details-marker {
  display: none;
}
.report-count {
  font-size: 11px;
  color: #646c5c;
}
.details-plus {
  margin-left: auto;
  font-size: 18px;
  line-height: 1;
  transition: transform 0.2s;
}
.more-reports[open] .details-plus {
  transform: rotate(45deg);
}
.report-list {
  padding-top: 12px;
}
.report-list > a {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 13px 0;
  border-bottom: 1px solid #ddded5;
  font-size: 13px;
}
.report-list > a > span:last-child {
  white-space: nowrap;
  color: var(--muted);
}
.background-section {
  padding-top: 70px;
  padding-bottom: 70px;
}
.background-content {
  margin-top: 36px;
}
.column-title {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1.3px;
  font-weight: 500;
  margin-bottom: 27px;
  color: #646c5c;
}
.experience-list {
  padding: 0;
  margin: 0;
  list-style: none;
}
.experience-list li {
  display: grid;
  grid-template-columns: 166px minmax(0, 1fr);
  gap: 28px;
  margin-bottom: 26px;
}
.experience-list li:last-child {
  margin-bottom: 0;
}
.experience-date {
  font-size: 11px;
  line-height: 1.8;
  color: #646c5c;
  padding-top: 2px;
  font-variant-numeric: tabular-nums;
}
.experience-entry {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.85fr);
  align-items: baseline;
  column-gap: 28px;
}
.experience-list h4 {
  font-size: 15px;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: -0.1px;
}
.experience-list h4 > span {
  font-weight: 400;
  color: #646c5c;
}
.experience-role {
  font-size: 13px;
  color: #666e5d;
}
.experience-description {
  grid-column: 1 / -1;
  font-size: 13px;
  color: #646c5c;
  line-height: 1.8;
  margin-top: 6px;
}
.education-details {
  border-top: 1px solid var(--line);
  padding-top: 15px;
  margin-top: 26px;
}
.education-details summary {
  display: flex;
  align-items: center;
  gap: 20px;
  width: fit-content;
  min-height: 36px;
  cursor: pointer;
  list-style: none;
  font-size: 12px;
  color: var(--muted);
}
.education-details summary::-webkit-details-marker {
  display: none;
}
.education-details[open] .details-plus {
  transform: rotate(45deg);
}
.education-history {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px 28px;
  padding-top: 12px;
  font-size: 12px;
  color: var(--muted);
  line-height: 1.9;
}
.contact-section {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding-top: 38px;
  padding-bottom: 39px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.contact-section .eyebrow {
  font-size: 11px;
  letter-spacing: 1.4px;
}
.contact-section h2 {
  font-size: 40px;
  margin-top: 9px;
}
.contact-section h2 em {
  color: var(--accent);
}
.contact-section p:last-child {
  font-size: 13px;
  color: var(--muted);
  margin-top: 12px;
}
.contact-email {
  font-size: 15px;
  border-bottom: 1px solid #c8cabb;
  padding-bottom: 8px;
  display: inline-flex;
  gap: 35px;
}
.contact-email > span {
  color: var(--accent);
}
.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-block: 24px 31px;
  font-size: 11px;
  color: #646c5c;
}
.site-footer > div {
  display: flex;
  gap: 17px;
}
.footer-divider {
  color: #b5b8ac;
  margin-inline: 9px;
}
.site-footer > div .footer-divider {
  margin: 0;
}
@media (min-width: 1500px) {
  .container {
    width: min(1160px, calc(100% - 112px));
  }
  .hero {
    gap: 108px;
    grid-template-columns: minmax(0, 1fr) 320px;
  }
  .hero h1 {
    font-size: 76px;
  }
  .bio {
    font-size: 15px;
  }
  .publication {
    grid-template-columns: 250px minmax(0, 1fr);
    gap: 36px;
  }
  .paper-content h3 {
    font-size: 18px;
  }
}
@media (max-width: 1100px) {
  .container {
    width: calc(100% - 64px);
  }
  .hero {
    grid-template-columns: minmax(0, 1fr) 266px;
    gap: 46px;
    padding-top: 65px;
  }
  .hero h1 {
    font-size: 66px;
  }
  .research-note {
    padding: 20px;
  }
  .research-thread > a > span:nth-child(2) {
    font-size: 34px;
  }
  .intro-statement {
    font-size: 20px;
  }
  .latest-update {
    gap: 18px;
  }
  .update-cta {
    font-size: 11px;
  }
  .publication {
    grid-template-columns: 210px minmax(0, 1fr);
    gap: 26px;
  }
  .paper-content h3 {
    font-size: 15px;
  }
  .experience-list li {
    grid-template-columns: 145px 1fr;
    gap: 12px;
  }
  .industry-grid {
    gap: 24px;
  }
  .industry-project .paper-links {
    gap: 12px;
  }
}
@media (max-width: 850px) {
  .site-nav {
    gap: 19px;
  }
  .site-nav .nav-contact {
    display: none;
  }
  .hero {
    gap: 32px;
    grid-template-columns: minmax(0, 1fr) 230px;
    padding-top: 52px;
  }
  .hero h1 {
    font-size: 58px;
  }
  .intro > .eyebrow {
    font-size: 11px;
    letter-spacing: 1px;
  }
  .research-note {
    padding: 19px 17px;
  }
  .research-thread > a > span:nth-child(2) {
    font-size: 30px;
  }
  .thread-detail {
    font-size: 11px;
  }
  .note-heading .eyebrow {
    font-size: 11px;
  }
  .thread-number {
    font-size: 11px;
  }
  .thread-arrow {
    font-size: 13px;
  }
  .note-footer {
    font-size: 11px;
  }
  .research-thread > a {
    gap: 10px;
  }
  .intro-statement {
    font-size: 18px;
  }
  .bio {
    font-size: 13px;
  }
  .profile-links {
    gap: 18px;
  }
  .profile-link {
    font-size: 13px;
  }
  .update-cta {
    display: none;
  }
  .latest-update {
    justify-content: space-between;
    font-size: 13px;
  }
  .publication {
    grid-template-columns: 190px minmax(0, 1fr);
    gap: 24px;
  }
  .paper-keyword {
    display: none;
  }
  .paper-content h3 {
    font-size: 15px;
  }
  .paper-summary {
    font-size: 14px;
  }
  .paper-authors {
    font-size: 12px;
  }
  .author-role {
    font-size: 11px;
  }
  .industry-grid {
    gap: 20px;
  }
  .industry-project h3 {
    font-size: 29px;
  }
  .industry-project > p:not(.industry-footnote) {
    font-size: 14px;
  }
  .industry-card-top .eyebrow {
    font-size: 11px;
  }
  .industry-project .paper-links {
    gap: 9px;
    font-size: 12px;
  }
  .industry-project .industry-footnote {
    font-size: 11px;
  }
  .experience-entry {
    display: block;
  }
  .experience-role {
    margin-top: 3px;
  }
  .column-title {
    font-size: 11px;
  }
  .contact-email {
    font-size: 15px;
    gap: 20px;
  }
}
@media (max-width: 650px) {
  html {
    scroll-padding-top: 88px;
  }
  .container {
    width: calc(100% - 40px);
  }
  .header-inner {
    height: auto;
    min-height: 68px;
    flex-wrap: wrap;
    gap: 0;
    padding-block: 14px;
  }
  .wordmark {
    font-size: 15px;
  }
  .brand-mark {
    width: 17px;
    height: 17px;
  }
  .site-nav {
    width: 100%;
    gap: 24px;
    flex-wrap: wrap;
    padding-top: 12px;
    font-size: 13px;
  }
  .site-nav > a {
    padding-block: 5px;
  }
  .js .menu-toggle:not([hidden]) {
    display: flex;
    align-items: center;
    gap: 14px;
  }
  .menu-toggle span {
    font-size: 20px;
    line-height: 1;
  }
  .js .site-nav {
    display: none;
    padding: 16px 0 2px;
    gap: 23px;
  }
  .js .site-nav.is-open {
    display: flex;
  }
  .js .site-nav .nav-contact {
    display: block;
    margin: 0;
    padding: 5px 0;
    border: 0;
  }
  .hero {
    display: block;
    padding-top: 43px;
    padding-bottom: 29px;
  }
  .hero h1 {
    font-size: 62px;
    margin-top: 18px;
    letter-spacing: -1.8px;
  }
  .intro > .eyebrow {
    display: block;
    font-size: 11px;
    letter-spacing: 1.25px;
  }
  .intro .eyebrow-divider {
    display: none;
  }
  .hero-affiliation {
    display: block;
    margin-top: 4px;
    margin-left: 15px;
  }
  .chinese-name {
    font-size: 17px;
  }
  .intro-statement {
    font-size: 20px;
    line-height: 1.6;
    margin-top: 23px;
  }
  .bio {
    font-size: 15px;
    line-height: 1.85;
    margin-top: 17px;
  }
  .profile-links {
    gap: 21px;
    margin-top: 23px;
  }
  .profile-link {
    font-size: 13px;
    min-height: 42px;
  }
  .research-note {
    transform: none;
    margin-top: 35px;
    padding: 16px 19px;
  }
  .research-note:before {
    display: none;
  }
  .note-heading {
    padding-bottom: 11px;
  }
  .note-star {
    font-size: 21px;
  }
  .note-heading .eyebrow {
    font-size: 11px;
  }
  .research-thread {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
  }
  .research-thread > a {
    position: relative;
    padding: 15px 0 6px;
    border: 0;
    display: block;
  }
  .thread-number {
    display: block;
    margin-bottom: 7px;
  }
  .research-thread > a > span:nth-child(2) {
    font-size: 29px;
    line-height: 1.1;
    letter-spacing: -0.5px;
  }
  .thread-detail {
    font-size: 11px;
    line-height: 1.65;
    margin-top: 6px;
    max-width: 95px;
    min-height: 36px;
  }
  .thread-arrow {
    display: none;
  }
  .note-footer {
    border-top: 1px solid #ddded3;
    margin-top: 7px;
    padding-top: 10px;
    font-size: 11px;
  }
  .note-footer .tiny-dot {
    margin-top: 5px;
  }
  .latest-update {
    display: block;
    padding: 14px 17px;
    font-size: 13px;
  }
  .update-label {
    font-size: 11px;
    margin-bottom: 6px;
  }
  .section {
    padding-block: 48px;
  }
  .section-heading {
    gap: 20px;
    margin-bottom: 18px;
  }
  h2 {
    font-size: 40px;
  }
  .section-number {
    font-size: 11px;
    margin-bottom: 8px;
  }
  .section-link {
    font-size: 11px;
    max-width: 123px;
    text-align: right;
    line-height: 1.8;
  }
  .section-intro {
    font-size: 13px;
  }
  .research-toolbar {
    gap: 17px;
    margin-bottom: 19px;
    display: block;
  }
  .filters {
    margin-top: 16px;
    gap: 3px;
  }
  .filters button {
    font-size: 11px;
    padding: 8px 10px;
    min-height: 36px;
  }
  .publication {
    grid-template-columns: 1fr;
    gap: 17px;
    padding: 24px 0;
  }
  .paper-image {
    aspect-ratio: 1.8;
    width: 100%;
    padding: 13px;
    max-height: 220px;
  }
  .paper-image img {
    max-width: 100%;
    max-height: 100%;
    height: 100%;
    width: 100%;
  }
  .paper-meta {
    margin-bottom: 8px;
  }
  .venue {
    font-size: 11px;
  }
  .paper-year {
    font-size: 11px;
  }
  .paper-highlight {
    font-size: 11px;
  }
  .paper-content h3 {
    font-size: 17px;
    line-height: 1.55;
  }
  .paper-authors {
    font-size: 12px;
    margin-top: 8px;
  }
  .paper-summary {
    font-size: 14px;
    line-height: 1.8;
    margin-top: 8px;
  }
  .paper-links {
    font-size: 12px;
    gap: 21px;
    margin-top: 10px;
  }
  .paper-links > a {
    min-height: 36px;
  }
  .paper-keyword {
    display: none;
  }
  .industry-section {
    padding: 45px 0 27px;
  }
  .industry-section .section-heading {
    display: block;
  }
  .industry-context {
    text-align: left;
    font-size: 13px;
    margin-top: 16px;
  }
  .industry-context br {
    display: none;
  }
  .industry-context > span:before {
    content: " / ";
    color: #aaa;
  }
  .industry-context > span {
    font-size: 11px;
  }
  .industry-grid {
    grid-template-columns: 1fr;
    gap: 29px;
    padding-top: 8px;
  }
  .industry-project {
    padding-top: 19px;
  }
  .industry-card-top .eyebrow {
    font-size: 11px;
  }
  .industry-project h3 {
    font-size: 34px;
    margin-block: 12px;
  }
  .industry-project > p:not(.industry-footnote) {
    font-size: 14px;
    line-height: 1.85;
  }
  .industry-project .industry-footnote {
    font-size: 11px;
    padding-top: 14px;
  }
  .industry-project .paper-links {
    font-size: 12px;
    gap: 23px;
    margin-top: 14px;
    padding-top: 5px;
  }
  .more-reports {
    margin-top: 26px;
  }
  .more-reports summary {
    font-size: 13px;
  }
  .report-list > a {
    font-size: 13px;
    line-height: 1.7;
  }
  .background-content {
    margin-top: 26px;
  }
  .column-title {
    font-size: 11px;
    margin-bottom: 22px;
  }
  .experience-list li {
    grid-template-columns: 120px minmax(0, 1fr);
    gap: 12px;
    margin-bottom: 26px;
  }
  .experience-date {
    font-size: 11px;
  }
  .experience-list h4 {
    font-size: 15px;
  }
  .experience-role {
    font-size: 13px;
  }
  .experience-description {
    font-size: 13px;
  }
  .education-history {
    grid-template-columns: 1fr;
  }
  .contact-section {
    display: block;
    padding-block: 30px;
  }
  .contact-section h2 {
    font-size: 39px;
  }
  .contact-section p:last-child {
    font-size: 11px;
  }
  .contact-email {
    font-size: 15px;
    margin-top: 26px;
    padding-bottom: 6px;
    gap: 35px;
  }
  .site-footer {
    font-size: 11px;
    display: block;
    padding-block: 21px;
  }
  .site-footer > div {
    margin-top: 10px;
    gap: 12px;
  }
}
@media (max-width: 370px) {
  .hero h1 {
    font-size: 54px;
  }
  .intro > .eyebrow {
    font-size: 11px;
    letter-spacing: 0.8px;
  }
  .profile-links {
    gap: 15px;
  }
  .profile-link {
    font-size: 11px;
  }
  .research-thread > a > span:nth-child(2) {
    font-size: 25px;
  }
  .research-note {
    padding-inline: 14px;
  }
  .filters button {
    font-size: 11px;
    padding-inline: 8px;
  }
  .experience-list li {
    grid-template-columns: 120px 1fr;
    gap: 9px;
  }
  .paper-authors .author-role {
    display: inline-block;
    margin-left: 0;
    padding-left: 0;
    border: 0;
    margin-right: 10px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *:before,
  *:after {
    transition: none !important;
    animation: none !important;
  }
}
@media print {
  .site-header,
  .research-note,
  .latest-wrap,
  .filters,
  .contact-section,
  .site-footer,
  .paper-image,
  .section-link,
  .skip-link {
    display: none !important;
  }
  .container {
    width: 100%;
    margin: 0;
  }
  body {
    background: white;
    color: black;
    font-size: 10pt;
  }
  .hero {
    display: block;
    padding: 0 0 20px;
  }
  .hero h1 {
    font-size: 40pt;
  }
  .bio {
    max-width: none;
  }
  .section,
  .industry-section {
    padding: 20px 0;
    background: white;
  }
  .publication {
    grid-template-columns: 1fr;
    gap: 0;
    break-inside: avoid;
    padding: 15px 0;
  }
  .paper-content h3 {
    font-size: 11pt;
  }
  .paper-summary,
  .paper-authors {
    font-size: 9pt;
  }
  .paper-links {
    font-size: 8pt;
  }
  .industry-grid {
    gap: 20px;
  }
  h2 {
    font-size: 27pt;
  }
  .profile-links {
    margin-top: 15px;
  }
  a {
    color: inherit;
  }
  .primary-link {
    background: transparent;
    color: black;
    border: 0;
    padding: 0;
  }
}
