:root {
  --paper: #f6f5f1;
  --paper-bright: #fdfdfb;
  --ink: #11110f;
  --muted: #716f68;
  --line: #cfcdc4;
  --signal: #e24b2d;
  --cyan: #2d7f84;
  --dark: #121310;
  --display-zh: -apple-system, BlinkMacSystemFont, "SF Pro SC", "SF Pro Display", "PingFang SC", "Helvetica Neue", "Microsoft YaHei", sans-serif;
  --display-en: -apple-system, BlinkMacSystemFont, "Helvetica Neue", "Avenir Next", Inter, Arial, sans-serif;
  font-family: var(--display-zh);
  color: var(--ink);
  background: var(--paper);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
}

html[lang^="zh"] body {
  font-weight: 400;
  letter-spacing: 0;
}

html[lang^="zh"] h1,
html[lang^="zh"] h2,
html[lang^="zh"] h3,
html[lang^="zh"] .brand strong,
html[lang^="zh"] .top-nav a {
  font-weight: 600;
  letter-spacing: 0;
}

body:has(dialog[open]) {
  overflow: hidden;
}

body.language-menu-open {
  overflow: hidden;
}

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

button,
input,
select {
  font: inherit;
}

button {
  color: inherit;
}

img {
  display: block;
  max-width: 100%;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  display: grid;
  grid-template-columns: minmax(220px, 1fr) auto 112px;
  align-items: center;
  height: 64px;
  padding: 0 clamp(18px, 4vw, 64px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(17, 17, 15, 0.9);
  color: white;
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: max-content;
}

.brand img {
  width: 34px;
  height: 34px;
  padding: 5px;
  border-radius: 50%;
  background: white;
  filter: none;
  object-fit: contain;
}

.brand strong {
  font-size: 16px;
  font-weight: 300;
}

.brand span {
  color: rgba(255, 255, 255, 0.72);
  font-family: var(--display-en);
  font-size: 16px;
  font-weight: 300;
}

.top-nav {
  display: flex;
  gap: 26px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
}

.top-nav a:hover {
  color: white;
}

.top-nav a[aria-current="page"] {
  color: white;
}

.top-nav a[aria-current="page"]::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  margin-top: 6px;
  background: var(--signal);
}

.language-menu {
  position: relative;
  justify-self: end;
}

.language-trigger {
  display: inline-flex;
  width: 96px;
  height: 32px;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 0 9px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 0;
  background: transparent;
  color: white;
  cursor: pointer;
  font-size: 11px;
}

.language-trigger span:first-child {
  width: 12px;
  font-size: 9px;
  line-height: 1;
}

.language-popover {
  position: fixed;
  z-index: 120;
  inset: 0;
  width: auto;
  min-height: 100svh;
  padding: clamp(32px, 5vw, 72px) clamp(24px, 4.2vw, 68px) 64px;
  overflow-y: auto;
  border: 0;
  background: #fff;
  color: var(--ink);
  box-shadow: none;
  font-family: var(--display-en);
}

.language-popover:not([hidden]) {
  animation: language-panel-in 220ms ease-out both;
}

.language-panel-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding-bottom: clamp(64px, 10vh, 116px);
}

.language-panel-kicker {
  margin: 0 0 12px;
  color: #999;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0;
}

.language-panel-header h2 {
  margin: 0;
  font-size: clamp(30px, 3.2vw, 48px);
  font-weight: 500;
  letter-spacing: 0;
}

.language-close {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  padding: 0;
  border: 0;
  background: transparent;
  color: #111;
  cursor: pointer;
  font-size: 34px;
  font-weight: 200;
  line-height: 1;
}

.language-close:focus {
  outline: 0;
}

.language-close:focus-visible {
  outline: 1px solid #777;
  outline-offset: 4px;
}

.language-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  column-gap: clamp(52px, 9vw, 160px);
  row-gap: clamp(50px, 8vh, 88px);
}

.language-popover .language-choice {
  display: grid;
  width: 100%;
  min-height: 74px;
  grid-template-columns: 16px minmax(0, 1fr);
  align-items: start;
  gap: 12px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  text-align: left;
  transition: transform 180ms ease, opacity 180ms ease;
}

.language-flag {
  width: 12px;
  padding-top: 5px;
  font-size: 9px;
  line-height: 1;
}

.language-choice-copy {
  display: grid;
  gap: 7px;
}

.language-choice-copy strong {
  color: #111;
  font-size: clamp(18px, 1.55vw, 23px);
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.15;
}

.language-choice-copy small {
  color: #999;
  font-size: clamp(13px, 1.1vw, 16px);
  font-weight: 300;
  letter-spacing: 0;
  line-height: 1.35;
}

.language-popover .language-choice.is-active .language-choice-copy strong::after {
  display: inline-block;
  width: 18px;
  height: 2px;
  margin: 0 0 5px 12px;
  background: var(--signal);
  content: "";
}

@media (hover: hover) {
  .language-popover .language-choice:hover {
    opacity: 0.62;
    transform: translateY(-3px);
  }

  .language-close:hover {
    opacity: 0.55;
  }
}

@keyframes language-panel-in {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }

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

.hero {
  position: relative;
  min-height: 92svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  background: #1a1b18;
  color: white;
}

.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
  object-position: center 46%;
  filter: saturate(0.88) contrast(1.04);
  transform: scale(1.01);
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(8, 9, 8, 0.8) 0%, rgba(8, 9, 8, 0.26) 60%, rgba(8, 9, 8, 0.05) 100%),
    linear-gradient(0deg, rgba(8, 9, 8, 0.9) 0%, transparent 55%);
}

.hero-copy {
  position: relative;
  z-index: 1;
  width: min(980px, calc(100% - 36px));
  margin: 0 clamp(18px, 6vw, 92px) clamp(120px, 16vh, 180px);
}

.kicker {
  margin: 0 0 14px;
  color: var(--signal);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0;
  font-size: clamp(53px, 10.4vw, 152px);
  font-weight: 300;
  line-height: 0.78;
  letter-spacing: 0;
}

.hero-statement {
  max-width: 660px;
  margin: 30px 0 26px;
  font-family: var(--display-zh);
  font-size: clamp(20px, 2.2vw, 30px);
  line-height: 1.5;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding-bottom: 7px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.65);
  font-size: 14px;
}

.text-link.dark {
  border-color: rgba(17, 17, 15, 0.55);
}

.solid-link,
.plain-link {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  font-size: 13px;
}

.solid-link {
  padding: 0 18px;
  background: var(--ink);
  color: white;
}

.solid-link:hover {
  background: var(--signal);
}

.plain-link {
  padding-bottom: 2px;
  border-bottom: 1px solid currentColor;
}

.plain-link:hover {
  color: var(--signal);
}

.hero-meta {
  position: absolute;
  z-index: 2;
  inset: auto 0 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  min-height: 86px;
  padding: 0 clamp(18px, 6vw, 92px);
  border-top: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(8, 9, 8, 0.48);
  backdrop-filter: blur(10px);
}

.hero-meta span {
  display: flex;
  align-items: baseline;
  gap: 12px;
  padding: 23px 24px 20px 0;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
}

.hero-meta span + span {
  padding-left: 24px;
}

.hero-meta b {
  font-size: clamp(24px, 3vw, 38px);
  line-height: 1;
}

.hero-meta small {
  color: rgba(255, 255, 255, 0.62);
}

.manifesto {
  display: grid;
  grid-template-columns: 80px minmax(0, 960px) 1fr;
  gap: 30px;
  padding: clamp(90px, 12vw, 170px) clamp(18px, 6vw, 92px);
  background: var(--paper-bright);
}

.home-summary {
  display: grid;
  grid-template-columns: 80px minmax(0, 1.25fr) minmax(320px, 0.75fr);
  gap: 30px;
  padding: clamp(86px, 11vw, 150px) clamp(18px, 6vw, 92px);
  border-bottom: 1px solid var(--line);
  background: var(--paper-bright);
}

.home-summary h2,
.audience-routes h2,
.knowledge-invite h2 {
  max-width: 900px;
  margin: 0;
  font-family: var(--display-zh);
  font-size: clamp(30px, 4vw, 58px);
  font-weight: 500;
  line-height: 1.08;
}

.summary-lead {
  max-width: 880px;
  margin: 30px 0 0;
  color: #3e3d38;
  font-size: clamp(16px, 1.5vw, 20px);
  line-height: 1.82;
}

.summary-position {
  max-width: 820px;
  margin: 18px 0 0;
  font-size: 13px;
  line-height: 1.75;
}

.summary-actions,
.about-primary-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px 24px;
  margin-top: 34px;
}

.semantic-answers {
  align-self: end;
  margin: 0;
  border-top: 1px solid var(--ink);
}

.semantic-answers div {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}

.semantic-answers dt {
  color: var(--signal);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 12px;
  font-weight: 300;
  letter-spacing: 0;
}

.semantic-answers dd {
  margin: 0;
  color: #45443f;
  font-size: 13px;
  line-height: 1.6;
}

.section-number {
  margin: 0;
  color: #77756e;
  font-size: 9px;
  font-weight: 500;
  line-height: 1.2;
  text-transform: uppercase;
}

.manifesto blockquote {
  margin: 0;
  font-family: var(--display-zh);
  font-size: clamp(24px, 3.68vw, 53px);
  line-height: 1.28;
}

.manifesto-credit {
  align-self: end;
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.channel-main {
  min-height: calc(100svh - 100px);
  padding-top: 64px;
}

.channel-hero {
  display: grid;
  grid-template-columns: 80px minmax(0, 1fr) minmax(240px, 380px);
  gap: 30px;
  align-items: end;
  min-height: 56svh;
  padding: clamp(90px, 12vw, 170px) clamp(18px, 6vw, 92px) clamp(64px, 8vw, 110px);
  border-bottom: 1px solid var(--line);
  background: var(--paper-bright);
}

.channel-hero h1,
.channel-archive h1,
.channel-about h1 {
  max-width: 960px;
  margin: 0;
  font-family: var(--display-zh);
  font-size: clamp(28px, 4.48vw, 62px);
  font-weight: 500;
  line-height: 1.04;
  letter-spacing: 0;
}

.channel-hero > p:last-child {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.8;
}

.channel-content {
  padding-top: clamp(64px, 8vw, 110px);
}

.section-heading.compact {
  margin-bottom: 28px;
}

.section-heading.compact h2 {
  font-size: clamp(28px, 3.5vw, 48px);
}

.channel-gates {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}

.channel-gates a {
  display: grid;
  min-height: 250px;
  padding: 30px clamp(22px, 4vw, 58px);
  border-right: 1px solid var(--line);
}

.channel-gates a:last-child {
  border-right: 0;
}

.channel-gates span {
  color: var(--signal);
  font-size: 12px;
}

.channel-gates strong {
  align-self: end;
  font-family: var(--display-zh);
  font-size: clamp(24px, 2.5vw, 38px);
  font-weight: 500;
  line-height: 1.25;
}

.channel-gates small {
  margin-top: 18px;
  color: var(--muted);
}

.channel-gates a:hover {
  background: var(--ink);
  color: white;
}

.channel-gates a:hover small {
  color: rgba(255, 255, 255, 0.6);
}

.audience-routes {
  padding: clamp(80px, 10vw, 140px) clamp(18px, 6vw, 92px);
  background: #e9e7e0;
}

.audience-artwork {
  width: min(760px, 64vw);
  margin: 0 0 clamp(46px, 7vw, 88px);
}

.audience-artwork img {
  display: block;
  width: 100%;
  aspect-ratio: 1.5;
  object-fit: cover;
  filter: grayscale(1);
}

.audience-artwork figcaption {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 10px;
  font-size: 11px;
  line-height: 1.5;
}

.audience-artwork cite {
  font-style: normal;
}

.audience-route-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--ink);
}

.audience-route-list a {
  min-height: 210px;
  padding: 24px 28px 28px 0;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.audience-route-list a + a {
  padding-left: 28px;
}

.audience-route-list a:last-child {
  border-right: 0;
}

.audience-route-list span {
  color: var(--signal);
  font-size: 11px;
}

.audience-route-list strong {
  display: block;
  margin-top: 72px;
  font-family: var(--display-zh);
  font-size: clamp(24px, 2.4vw, 34px);
  font-weight: 500;
}

.audience-route-list p {
  max-width: 350px;
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
}

.audience-route-list a:hover strong {
  color: var(--signal);
}

.section {
  padding: clamp(80px, 11vw, 150px) clamp(18px, 6vw, 92px);
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 42px;
}

.section-heading h2,
.archive-intro h2,
.about h2 {
  max-width: 900px;
  margin: 0;
  font-family: var(--display-zh);
  font-size: clamp(30px, 4.8vw, 66px);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: 0;
}

.circle-button {
  width: 50px;
  height: 50px;
  flex: 0 0 auto;
  border: 1px solid var(--ink);
  border-radius: 50%;
  background: transparent;
  font-size: 24px;
  cursor: pointer;
}

.circle-button:hover {
  background: var(--ink);
  color: white;
}

.discover {
  overflow: hidden;
}

.discover-direct {
  min-height: calc(100svh - 64px);
  padding: 18px clamp(18px, 6vw, 92px) 64px;
  background: var(--paper-bright);
}

.discover-home {
  scroll-margin-top: 64px;
  border-top: 1px solid var(--line);
}

.redirect-note {
  display: grid;
  min-height: 100svh;
  place-content: center;
  gap: 18px;
  padding: 24px;
  background: var(--paper-bright);
  text-align: center;
}

.discover-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 50px;
  margin-bottom: 12px;
}

.discover-toolbar h1,
.discover-toolbar h2 {
  margin: 0;
  color: var(--signal);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 12px;
  font-weight: 300;
  line-height: 1;
  letter-spacing: 0;
}

.discover-toolbar .circle-button {
  width: 42px;
  height: 42px;
  font-size: 20px;
}

.discovery-field {
  position: relative;
  width: 100%;
  min-height: 526px;
  overflow: hidden;
  padding: 16px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.discovery-tile {
  position: absolute;
  box-sizing: border-box;
  width: 240px;
  height: 240px;
  margin: 0;
  padding: 10px;
  overflow: visible;
  border: 1px solid #9f9a91;
  opacity: 0;
  background: #fffdf7;
  box-shadow: var(--tile-shadow-x, 10px) var(--tile-shadow-y, 10px) 0 #d5d1c8;
  transform: translateY(10px) rotate(calc(var(--tile-rotate, 0deg) * 0.35)) scale(0.965);
  transform-origin: center;
  transition:
    opacity 1.4s ease,
    box-shadow 1.6s ease,
    transform 1.6s ease;
  will-change: opacity, transform;
}

.discovery-tile.is-visible {
  opacity: 1;
  transform: translateY(0) rotate(var(--tile-rotate, 0deg)) scale(1);
}

.discovery-tile.is-leaving {
  opacity: 0;
  transform: translateY(-6px) rotate(calc(var(--tile-rotate, 0deg) * 1.25)) scale(0.965);
}

.discovery-tile:hover {
  z-index: 5;
  box-shadow: calc(var(--tile-shadow-x, 10px) + 3px) calc(var(--tile-shadow-y, 10px) + 3px) 0 #d5d1c8;
  transform: translateY(-4px) rotate(var(--tile-rotate, 0deg)) scale(1.018);
}

.discovery-tile img {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 4px;
  object-fit: cover;
}

.archive {
  padding: clamp(24px, 3.6vw, 48px) clamp(18px, 4.2vw, 64px);
  background: #e9e7e0;
}

.channel-archive {
  min-height: calc(100svh - 64px);
}

.archive-hero-image {
  position: relative;
  width: 100%;
  height: clamp(180px, 22vw, 280px);
  margin-bottom: 18px;
  overflow: hidden;
  background: #161a1a;
}

.archive-hero-image::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(8, 9, 9, 0.78), rgba(8, 9, 9, 0.18) 70%),
    linear-gradient(0deg, rgba(8, 9, 9, 0.64), transparent 60%);
}

.archive-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 55%;
}

.archive-hero-caption {
  position: absolute;
  z-index: 3;
  right: 18px;
  bottom: 14px;
  left: auto;
  max-width: 360px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 10px;
  line-height: 1.45;
  text-align: right;
}

.archive-intro {
  position: absolute;
  z-index: 2;
  inset: 0;
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 30px;
  align-items: end;
  margin: 0;
  padding: clamp(26px, 4vw, 54px);
  color: white;
}

.archive-intro h1 {
  max-width: 760px;
  margin: 0;
  color: white;
  font-family: var(--display-zh);
  font-size: clamp(29px, 3.84vw, 52px);
  font-weight: 400;
  line-height: 1.04;
}

.archive-intro .section-number {
  color: rgba(255, 255, 255, 0.62);
}

.archive-intro .kicker,
.archive-hero-image .revision-add {
  color: rgba(255, 255, 255, 0.8) !important;
}

.archive-note {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
  line-height: 1.7;
}

.archive-context {
  display: grid;
  gap: 22px;
}

.archive-tools {
  position: sticky;
  top: 64px;
  z-index: 20;
  display: grid;
  grid-template-columns: 140px minmax(0, 1fr) auto auto;
  gap: 12px;
  align-items: center;
  margin: 0 -1px 26px;
  padding: 13px;
  border: 1px solid var(--line);
  background: rgba(246, 245, 241, 0.94);
  backdrop-filter: blur(14px);
  font-size: 12px;
}

.search-field {
  display: grid;
  width: 140px;
  grid-template-columns: 18px minmax(0, 1fr);
  align-items: center;
  min-height: 38px;
  padding: 0 8px;
  border: 1px solid var(--line);
  background: white;
}

.search-field span {
  color: var(--muted);
  font-size: 13px;
}

.search-field input {
  min-width: 0;
  border: 0;
  outline: 0;
  background: transparent;
  transform-origin: left center;
  transition: transform 180ms ease;
  font-size: 12px;
}

.search-field:hover input {
  transform: scale(1.05);
}

.category-tabs {
  display: flex;
  gap: 2px;
  overflow-x: auto;
  scrollbar-width: none;
}

.category-tab {
  min-height: 38px;
  flex: 0 0 auto;
  padding: 0 14px;
  border: 0;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font-size: 12px;
  transition: color 180ms ease, background 180ms ease, transform 180ms ease;
}

.category-tab:hover {
  transform: scale(1.05);
}

.category-tab:hover,
.category-tab.is-active {
  background: var(--ink);
  color: white;
}

.year-select {
  min-height: 38px;
  padding: 0 34px 0 12px;
  border: 1px solid var(--line);
  border-radius: 0;
  background: white;
  transition: transform 180ms ease;
  font-size: 12px;
}

.year-select:hover {
  transform: scale(1.05);
}

.result-count {
  min-width: 92px;
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  text-align: right;
}

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

.work-card {
  min-width: 0;
  overflow: hidden;
  background: transparent;
  text-align: left;
}

.work-open {
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  text-align: left;
  cursor: pointer;
}

.work-card.is-wide {
  grid-column: span 2;
}

.work-card .work-media {
  display: grid;
  width: 100%;
  aspect-ratio: 4 / 3;
  place-items: center;
  overflow: hidden;
  background: #e9e7e0;
}

.work-card.is-wide .work-media {
  aspect-ratio: 16 / 9;
}

.work-card img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 400ms ease;
}

.work-open:hover img {
  transform: scale(1.025);
}

.work-caption {
  display: block;
}

.work-card .work-caption {
  padding: 13px 4px 0;
}

.work-card .work-caption strong,
.work-medium-link,
.work-archive-code {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.work-card .work-caption strong {
  font-family: var(--display-zh);
  font-size: 19px;
  font-weight: 600;
}

.work-medium-link {
  width: max-content;
  max-width: 100%;
  margin-top: 5px;
  padding: 0 4px;
  border: 0;
  background: transparent;
  color: var(--muted);
  font-size: 12px;
  text-align: left;
  cursor: pointer;
}

.work-medium-link:hover,
.work-medium-link:focus-visible {
  color: var(--signal);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.work-archive-code {
  margin-top: 8px;
  padding: 0 4px;
  color: #9a978e;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 9px;
}

.empty-state {
  display: grid;
  min-height: 360px;
  padding: 70px 0;
  place-items: center;
  color: var(--muted);
  text-align: center;
}

.empty-state[hidden] {
  display: none;
}

.empty-state p {
  margin: 24px 0 18px;
  font-family: var(--display-zh);
  font-size: 19px;
}

.empty-state button {
  min-width: 92px;
  min-height: 38px;
  padding: 0 20px;
  border: 1px solid var(--ink);
  background: transparent;
  cursor: pointer;
  font-size: 12px;
}

.empty-state button:hover {
  background: var(--ink);
  color: white;
}

.magic-prism {
  position: relative;
  width: 92px;
  height: 92px;
  transform: rotate(45deg);
  border: 1px solid rgba(45, 127, 132, 0.5);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(132, 224, 220, 0.28), rgba(236, 171, 255, 0.22));
  box-shadow: inset 0 0 22px rgba(255, 255, 255, 0.95), 0 0 34px rgba(66, 195, 195, 0.3);
  animation: prism-float 4.8s ease-in-out infinite;
}

.magic-prism::before,
.magic-prism::after,
.magic-prism i {
  content: "";
  position: absolute;
  background: rgba(255, 255, 255, 0.74);
  box-shadow: 0 0 13px rgba(119, 233, 226, 0.65);
}

.magic-prism::before {
  inset: 19px;
  border: 1px solid rgba(255, 255, 255, 0.84);
  background: transparent;
}

.magic-prism::after {
  top: 45px;
  left: -22px;
  width: 136px;
  height: 1px;
  transform: rotate(-45deg);
}

.magic-prism i {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  animation: crystal-glint 2.4s ease-in-out infinite;
}

.magic-prism i:nth-child(1) { top: 7px; left: 12px; }
.magic-prism i:nth-child(2) { top: 26px; right: 8px; animation-delay: 0.35s; }
.magic-prism i:nth-child(3) { bottom: 8px; left: 20px; animation-delay: 0.8s; }
.magic-prism i:nth-child(4) { right: 27px; bottom: 24px; animation-delay: 1.2s; }
.magic-prism i:nth-child(5) { top: 42px; left: 42px; animation-delay: 1.55s; }
.magic-prism i:nth-child(6) { top: 18px; left: 29px; animation-delay: 1.9s; }

@keyframes prism-float {
  0%, 100% { transform: translateY(0) rotate(45deg); filter: hue-rotate(0deg); }
  50% { transform: translateY(-10px) rotate(51deg); filter: hue-rotate(28deg); }
}

@keyframes crystal-glint {
  0%, 100% { opacity: 0.24; transform: scale(0.6); }
  50% { opacity: 1; transform: scale(2.4); }
}

.scroll-work-preview {
  position: fixed;
  z-index: 18;
  top: 50%;
  right: 18px;
  display: grid;
  width: 76px;
  padding: 0;
  overflow: hidden;
  transform: translateY(-50%);
  border: 1px solid rgba(255, 255, 255, 0.78);
  background: rgba(17, 17, 15, 0.9);
  color: white;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
  cursor: pointer;
  opacity: 1;
  transition: opacity 260ms ease, transform 260ms ease;
}

.scroll-work-preview[hidden] {
  display: none;
}

.scroll-work-preview.is-changing {
  opacity: 0;
  transform: translateY(-50%) scale(0.94);
}

.scroll-work-preview img {
  width: 74px;
  height: 74px;
  object-fit: cover;
  background: #e9e7e0;
}

.scroll-work-preview span {
  display: block;
  padding: 5px 6px;
  overflow: hidden;
  font-size: 8px;
  line-height: 1.2;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.scroll-work-preview span:first-child {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  padding: 7px 6px;
  background: rgba(17, 17, 15, 0.56);
  font-size: 15px;
  font-weight: 300;
  opacity: 0.7;
  font-variant-numeric: tabular-nums;
}

.projects {
  padding: clamp(80px, 10vw, 140px) clamp(18px, 6vw, 92px);
  background: var(--dark);
  color: white;
}

.section-heading.light .kicker {
  color: #eb6a4e;
}

.project-list {
  border-top: 1px solid rgba(255, 255, 255, 0.22);
}

.project-list article {
  position: relative;
  display: grid;
  grid-template-columns: 120px minmax(240px, 1fr) minmax(220px, 0.8fr) minmax(180px, 340px);
  gap: 24px;
  align-items: center;
  min-height: 220px;
  padding: 24px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
}

.project-list article > p,
.project-list article > span {
  margin: 0;
  color: rgba(255, 255, 255, 0.56);
  font-size: 13px;
  line-height: 1.7;
}

.project-list h3 {
  margin: 0;
  font-family: var(--display-zh);
  font-size: clamp(26px, 3vw, 44px);
  font-weight: 500;
}

.project-list h3 > span {
  color: inherit;
  font: inherit;
  line-height: inherit;
}

.project-wechat {
  display: block;
  width: max-content;
  margin-top: 18px;
  padding: 0 0 5px;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  background: transparent;
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  cursor: pointer;
}

.project-wechat:hover {
  color: white;
  border-color: var(--signal);
}

.project-title-button,
.project-heading-button {
  display: block;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  line-height: inherit;
  text-align: left;
  cursor: pointer;
}

.project-title-button small {
  display: block;
  width: max-content;
  margin-top: 18px;
  padding-bottom: 5px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
  color: rgba(255, 255, 255, 0.68);
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 12px;
  font-weight: 400;
}

.project-title-button:hover small,
.project-title-button:focus-visible small {
  color: white;
  border-color: var(--signal);
}

.project-heading-button:hover,
.project-heading-button:focus-visible {
  color: var(--signal);
}

.project-list img {
  width: 100%;
  height: 170px;
  object-fit: cover;
  filter: saturate(0.76);
}

.projects-all-link {
  display: block;
  width: max-content;
  margin: 30px 0 0 auto;
  padding-bottom: 6px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.46);
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
}

.projects-all-link:hover {
  border-color: var(--signal);
  color: white;
}

.revision-add {
  color: #245f72 !important;
}

.knowledge-invite {
  display: grid;
  grid-template-columns: 80px minmax(0, 1fr) minmax(300px, 0.6fr);
  gap: 30px;
  align-items: end;
  padding: clamp(80px, 10vw, 140px) clamp(18px, 6vw, 92px);
  border-top: 1px solid var(--line);
  background: var(--paper-bright);
}

.knowledge-invite-copy p {
  margin: 0 0 26px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.78;
}

.about {
  display: grid;
  grid-template-columns: 80px minmax(0, 1.15fr) minmax(300px, 0.65fr);
  gap: 30px;
  padding: clamp(90px, 12vw, 170px) clamp(18px, 6vw, 92px);
  background: var(--paper-bright);
}

.channel-about {
  min-height: calc(100svh - 64px);
}

.about-lead {
  max-width: 850px;
  margin: 34px 0 0;
  color: #3e3d38;
  font-size: clamp(17px, 1.7vw, 22px);
  line-height: 1.85;
}

.about-position {
  max-width: 850px;
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.8;
}

.about-portrait {
  align-self: start;
  margin: 0;
}

.about-portrait-stage {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: #e4e2da;
}

.about-portrait img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 34%;
  filter: saturate(0.88) contrast(1.02);
  opacity: 0;
  transform: scale(1.025);
  transition: opacity 1200ms ease, transform 12s ease;
}

.about-portrait img.is-active {
  opacity: 1;
  transform: scale(1);
}

.about-portrait figcaption {
  padding-top: 10px;
  color: var(--muted);
  font-size: 10px;
}

.about-essentials,
.about-timeline-block,
.about-context {
  grid-column: 2 / -1;
  display: grid;
  grid-template-columns: minmax(280px, 0.6fr) minmax(0, 1.4fr);
  gap: clamp(38px, 6vw, 90px);
  margin-top: clamp(56px, 8vw, 110px);
  padding-top: 34px;
  border-top: 1px solid var(--ink);
}

.about-essentials h2,
.about-subheading h2,
.about-context h2 {
  margin: 0;
  font-family: var(--display-zh);
  font-size: clamp(24px, 2.88vw, 42px);
  font-weight: 500;
  line-height: 1.12;
}

.about-context > div:last-child {
  border-top: 1px solid var(--line);
}

.about-context > div:last-child p {
  margin: 0;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  color: #4c4a45;
  font-size: 14px;
  line-height: 1.8;
}

.about-answer-grid {
  margin: 0;
}

.about-answer-grid div {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 24px;
  padding: 19px 0;
  border-bottom: 1px solid var(--line);
}

.about-answer-grid div:first-child {
  border-top: 1px solid var(--line);
}

.about-answer-grid dt {
  font-family: var(--display-zh);
  font-size: 19px;
}

.about-answer-grid dd {
  margin: 0;
  color: #4c4a45;
  font-size: 13px;
  line-height: 1.75;
}

.about-timeline-block .timeline {
  align-self: start;
}

.timeline {
  align-self: start;
  border-top: 1px solid var(--line);
}

.timeline article {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 16px;
  padding: 17px 0;
  border-bottom: 1px solid var(--line);
}

.timeline time {
  color: var(--signal);
  font-size: 12px;
  font-weight: 700;
}

.timeline p {
  margin: 0;
  font-size: 13px;
  line-height: 1.55;
}

.about-links {
  grid-column: 2 / -1;
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  padding-top: 36px;
  border-top: 1px solid var(--line);
  font-size: 13px;
}

.about-links span {
  margin-left: auto;
  color: var(--muted);
  font-size: 11px;
}

.practice-framework {
  display: grid;
  grid-template-columns: 80px minmax(280px, 0.65fr) minmax(0, 1.35fr);
  gap: 30px;
  padding: clamp(84px, 11vw, 150px) clamp(18px, 6vw, 92px);
  background: #e9e7e0;
}

.practice-intro h2,
.faq-hero h1,
.knowledge-hero h1 {
  margin: 0;
  font-family: var(--display-zh);
  font-size: clamp(28px, 3.84vw, 55px);
  font-weight: 500;
  line-height: 1.05;
}

.practice-intro > p:last-child {
  max-width: 640px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.8;
}

.practice-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--ink);
}

.practice-list article {
  min-height: 230px;
  padding: 22px 26px 26px 0;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.practice-list article:nth-child(even) {
  padding-left: 26px;
  border-right: 0;
}

.practice-list span,
.entity-relations span {
  color: var(--signal);
  font-size: 10px;
  font-weight: 700;
}

.practice-list h3 {
  margin: 72px 0 12px;
  font-family: var(--display-zh);
  font-size: 26px;
  font-weight: 500;
}

.practice-list p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
}

.project-channel-hero,
.project-thesis,
.project-source-note {
  display: grid;
  grid-template-columns: 80px minmax(0, 1fr) minmax(300px, 0.62fr);
  gap: 30px;
  padding: clamp(86px, 11vw, 155px) clamp(18px, 6vw, 92px);
}

.project-channel-hero {
  align-items: end;
  min-height: 70svh;
  background: var(--paper-bright);
}

.project-kicker {
  color: var(--signal);
}

.project-channel-hero h1,
.project-thesis h2,
.project-source-note h2 {
  margin: 0;
  font-family: var(--display-zh);
  font-size: clamp(27px, 3.71vw, 54px);
  font-weight: 500;
  line-height: 1.06;
}

.project-channel-lead > p:first-child {
  margin: 0;
  color: #46453f;
  font-size: 15px;
  line-height: 1.8;
}

.project-thesis {
  align-items: start;
  border-top: 1px solid var(--line);
  background: #e9e7e0;
}

.project-thesis h2,
.project-source-note h2 {
  font-size: clamp(29px, 3.84vw, 54px);
}

.project-milestones {
  border-top: 1px solid var(--ink);
}

.project-milestones article {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 8px 22px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}

.project-milestones time {
  grid-row: 1 / span 2;
  color: var(--signal);
  font-size: 12px;
  font-weight: 700;
}

.project-milestones h3,
.project-entry h2 {
  margin: 0;
  font-family: var(--display-zh);
  font-weight: 500;
}

.project-milestones h3 {
  font-size: 22px;
}

.project-milestones p {
  margin: 0;
  font-size: 13px;
  line-height: 1.75;
}

.project-index {
  position: sticky;
  z-index: 20;
  top: 64px;
  display: flex;
  gap: 28px;
  padding: 0 clamp(18px, 6vw, 92px);
  overflow-x: auto;
  border-top: 1px solid #33332f;
  border-bottom: 1px solid #33332f;
  background: rgba(18, 19, 16, 0.97);
  color: rgba(255, 255, 255, 0.7);
  scrollbar-width: thin;
}

.project-index a {
  flex: 0 0 auto;
  padding: 17px 0;
  font-size: 11px;
}

.project-index a:hover {
  color: white;
}

.project-catalog {
  background: var(--paper-bright);
}

.project-entry {
  display: grid;
  grid-template-columns: 80px minmax(360px, 0.95fr) minmax(320px, 1.05fr);
  gap: 30px;
  align-items: start;
  padding: clamp(72px, 9vw, 128px) clamp(18px, 6vw, 92px);
  scroll-margin-top: 116px;
  border-bottom: 1px solid var(--line);
}

.project-entry:nth-child(even) {
  background: #efede7;
}

.project-entry-number {
  margin: 0;
  color: var(--signal);
  font-size: 10px;
  font-weight: 700;
}

.project-entry figure {
  margin: 0;
}

.project-entry figure img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  background: white;
}

.project-entry figcaption {
  padding-top: 9px;
  color: var(--muted);
  font-size: 9px;
}

.project-entry h2 {
  font-size: clamp(27px, 3.6vw, 54px);
  line-height: 1.08;
}

.project-entry > div > p:not(.kicker) {
  max-width: 720px;
  margin: 28px 0 0;
  color: #494842;
  font-size: 15px;
  line-height: 1.85;
}

.project-entry dl {
  margin: 36px 0 0;
  border-top: 1px solid var(--ink);
}

.project-entry dl div {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 22px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}

.project-entry dt {
  color: var(--muted);
  font-size: 11px;
}

.project-entry dd {
  margin: 0;
  font-size: 12px;
  line-height: 1.6;
}

.project-wechat--dark {
  margin-top: 28px;
  border-color: var(--ink);
  color: var(--ink);
}

.project-source-note {
  align-items: start;
  background: var(--dark);
  color: white;
}

.project-source-note > div:last-child > p {
  margin: 0 0 34px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 14px;
  line-height: 1.8;
}

.project-source-note .faq-next-links {
  border-color: rgba(255, 255, 255, 0.52);
}

.project-source-note .faq-next-links a {
  border-color: rgba(255, 255, 255, 0.2);
}

.faq-hero,
.knowledge-hero {
  display: grid;
  grid-template-columns: 80px minmax(0, 1fr) minmax(280px, 0.55fr);
  gap: 30px;
  align-items: end;
  min-height: 66svh;
  padding: clamp(90px, 12vw, 170px) clamp(18px, 6vw, 92px) clamp(70px, 9vw, 120px);
  background: var(--paper-bright);
}

.faq-hero-summary,
.knowledge-hero-copy {
  align-self: end;
}

.faq-hero-summary > p:first-child,
.knowledge-hero-copy > p:first-child {
  margin: 0;
  color: #46453f;
  font-size: 15px;
  line-height: 1.8;
}

.review-note {
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 10px;
  line-height: 1.6;
}

.knowledge-hero-copy .plain-link {
  margin-top: 20px;
}

.faq-section {
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr);
  gap: clamp(42px, 8vw, 128px);
  padding: clamp(78px, 10vw, 140px) clamp(18px, 6vw, 92px);
  border-top: 1px solid var(--line);
  background: #e9e7e0;
}

.faq-index {
  position: sticky;
  top: 92px;
  align-self: start;
  display: grid;
  border-top: 1px solid var(--ink);
}

.faq-index a {
  padding: 15px 0;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 12px;
}

.faq-index a:hover {
  color: var(--signal);
}

.faq-groups {
  max-width: 920px;
}

.faq-groups > section {
  scroll-margin-top: 92px;
  margin-bottom: 72px;
}

.faq-groups details {
  border-top: 1px solid var(--line);
}

.faq-groups details:last-child {
  border-bottom: 1px solid var(--line);
}

.faq-groups summary {
  position: relative;
  padding: 22px 50px 22px 0;
  font-family: var(--display-zh);
  font-size: clamp(20px, 2.1vw, 30px);
  line-height: 1.3;
  cursor: pointer;
  list-style: none;
}

.faq-groups summary::-webkit-details-marker {
  display: none;
}

.faq-groups summary::after {
  content: "+";
  position: absolute;
  right: 4px;
  top: 20px;
  color: var(--signal);
}

.faq-groups details[open] summary::after {
  content: "−";
}

.faq-groups details > p {
  max-width: 760px;
  margin: 0;
  padding: 0 50px 24px 0;
  color: #4b4943;
  font-size: 14px;
  line-height: 1.8;
}

.faq-groups details a {
  border-bottom: 1px solid currentColor;
}

.faq-next,
.knowledge-next {
  display: grid;
  grid-template-columns: 80px minmax(0, 1fr) minmax(280px, 0.55fr);
  gap: 30px;
  align-items: end;
  padding: clamp(78px, 10vw, 140px) clamp(18px, 6vw, 92px);
  background: var(--paper-bright);
}

.faq-next h2,
.knowledge-next h2,
.knowledge-summary h2,
.entity-map h2,
.term-section h2,
.evidence-method h2,
.source-register h2 {
  margin: 0;
  font-family: var(--display-zh);
  font-size: clamp(29px, 3.84vw, 54px);
  font-weight: 500;
  line-height: 1.08;
}

.faq-next-links {
  display: grid;
  border-top: 1px solid var(--ink);
}

.faq-next-links a {
  padding: 15px 0;
  border-bottom: 1px solid var(--line);
  font-size: 13px;
}

.faq-next-links a:hover {
  color: var(--signal);
}

.knowledge-summary,
.evidence-method {
  display: grid;
  grid-template-columns: 80px minmax(280px, 0.65fr) minmax(0, 1.35fr);
  gap: 30px;
  padding: clamp(78px, 10vw, 140px) clamp(18px, 6vw, 92px);
  border-top: 1px solid var(--line);
}

.knowledge-summary blockquote {
  margin: 0;
  font-family: var(--display-zh);
  font-size: clamp(22px, 3.2vw, 43px);
  line-height: 1.35;
}

.entity-map,
.term-section {
  padding: clamp(78px, 10vw, 140px) clamp(18px, 6vw, 92px);
  background: #e9e7e0;
}

.entity-map-heading,
.term-heading {
  display: grid;
  grid-template-columns: 80px minmax(0, 1fr);
  gap: 30px;
  margin-bottom: clamp(48px, 7vw, 86px);
}

.entity-relations {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--ink);
}

.entity-relations article {
  min-height: 260px;
  padding: 22px 28px 28px 0;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.entity-relations article:nth-child(3n + 2),
.entity-relations article:nth-child(3n + 3) {
  padding-left: 28px;
}

.entity-relations article:nth-child(3n) {
  border-right: 0;
}

.entity-relations h3 {
  margin: 80px 0 14px;
  font-family: var(--display-zh);
  font-size: 28px;
  font-weight: 500;
}

.entity-relations p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.72;
}

.term-section {
  border-top: 1px solid var(--line);
  background: var(--paper-bright);
}

.term-list {
  margin: 0 0 0 110px;
  border-top: 1px solid var(--ink);
}

.term-list div {
  display: grid;
  grid-template-columns: minmax(210px, 0.5fr) minmax(0, 1.5fr);
  gap: 34px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}

.term-list dt {
  font-family: var(--display-zh);
  font-size: 24px;
}

.term-list dd {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.75;
}

.evidence-method {
  background: #171714;
  color: white;
}

.evidence-levels {
  border-top: 1px solid rgba(255, 255, 255, 0.45);
}

.evidence-levels article {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 24px;
  padding: 22px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.evidence-levels strong {
  color: var(--signal);
  font-size: 32px;
}

.evidence-levels h3 {
  margin: 0 0 8px;
  font-family: var(--display-zh);
  font-size: 22px;
  font-weight: 500;
}

.evidence-levels p {
  margin: 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 13px;
  line-height: 1.7;
}

.source-register {
  display: grid;
  grid-template-columns: 80px minmax(280px, 0.65fr) minmax(0, 1.35fr);
  gap: 30px;
  padding: clamp(78px, 10vw, 140px) clamp(18px, 6vw, 92px);
  border-top: 1px solid var(--line);
  background: #e9e7e0;
  scroll-margin-top: 64px;
}

.source-register h2 {
  margin: 0;
  font-family: var(--display-zh);
  font-size: clamp(29px, 3.84vw, 54px);
  font-weight: 500;
  line-height: 1.08;
}

.external-source-card {
  padding-top: 22px;
  border-top: 1px solid var(--ink);
}

.external-source-list {
  min-width: 0;
}

.external-source-card + .external-source-card {
  margin-top: 46px;
}

.external-source-card > div > span {
  color: var(--signal);
  font-size: 10px;
}

.external-source-card h3 {
  margin: 42px 0 18px;
  font-family: var(--display-zh);
  font-size: clamp(22px, 2.4vw, 32px);
  font-weight: 500;
}

.external-source-card p {
  max-width: 720px;
  margin: 0 0 24px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.8;
}

.external-source-card a {
  display: inline-block;
  padding-bottom: 4px;
  border-bottom: 1px solid currentColor;
  font-size: 12px;
}

.external-source-card a:hover {
  color: var(--signal);
}

.about-links a:hover {
  color: var(--signal);
}

.exhibitions {
  padding: clamp(84px, 11vw, 150px) clamp(18px, 6vw, 92px);
  scroll-margin-top: 64px;
  background: #171714;
  color: white;
}

.exhibitions-heading {
  display: grid;
  grid-template-columns: 80px minmax(0, 1fr) minmax(240px, 380px);
  gap: 30px;
  align-items: end;
  margin-bottom: clamp(48px, 7vw, 92px);
}

.exhibitions-heading h2 {
  max-width: 900px;
  margin: 0;
  font-family: var(--display-zh);
  font-size: clamp(30px, 4vw, 58px);
  font-weight: 500;
  line-height: 1.08;
}

.exhibitions-heading > p:last-child {
  margin: 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 14px;
  line-height: 1.75;
}

.exhibition-feature {
  display: grid;
  grid-template-columns: minmax(300px, 0.72fr) minmax(420px, 1.28fr);
  gap: clamp(36px, 6vw, 92px);
  padding-top: 48px;
  border-top: 1px solid rgba(255, 255, 255, 0.26);
}

.exhibition-image {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: #0e0e0c;
  cursor: zoom-in;
}

.exhibition-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 420ms ease, filter 420ms ease;
}

.exhibition-image:hover img {
  transform: scale(1.015);
  filter: brightness(1.05);
}

.exhibition-image--poster {
  aspect-ratio: 4 / 5;
}

.exhibition-image--poster img,
.exhibition-image--portrait img {
  object-fit: contain;
}

.exhibition-copy {
  align-self: center;
  max-width: 760px;
}

.exhibition-copy > .kicker {
  margin-top: 54px;
  color: rgba(255, 255, 255, 0.52);
}

.exhibition-copy h3 {
  margin: 12px 0 28px;
  font-family: var(--display-zh);
  font-size: clamp(37px, 4.8vw, 69px);
  font-weight: 500;
  letter-spacing: 0;
  line-height: 0.98;
}

.exhibition-copy > p:not(.kicker) {
  max-width: 670px;
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 16px;
  line-height: 1.82;
}

.evidence-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  align-items: center;
  color: rgba(255, 255, 255, 0.54);
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.evidence-status {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 4px 9px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  background: var(--signal);
  color: white;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.evidence-status--photo {
  background: #395b51;
}

.evidence-status--record {
  background: #4a5068;
}

.evidence-status--pending {
  background: transparent;
  color: rgba(255, 255, 255, 0.62);
}

.exhibition-facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 28px;
  margin: 48px 0 0;
}

.exhibition-facts div {
  padding: 16px 0 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.exhibition-facts dt {
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.44);
  font-size: 11px;
}

.exhibition-facts dd {
  margin: 0;
  font-size: 13px;
  line-height: 1.55;
}

.coartists {
  margin-top: 12px;
  padding: 16px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.coartists summary {
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  cursor: pointer;
}

.coartists p {
  margin: 18px 0 4px;
  color: rgba(255, 255, 255, 0.48);
  font-size: 12px;
  line-height: 1.8;
}

.exhibition-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(24px, 3.5vw, 52px);
  margin-top: clamp(76px, 10vw, 136px);
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.26);
}

.exhibition-card {
  min-width: 0;
}

.exhibition-card-copy {
  padding-top: 24px;
}

.exhibition-card h3 {
  margin: 26px 0 12px;
  font-family: var(--display-zh);
  font-size: clamp(24px, 2.5vw, 36px);
  font-weight: 500;
  line-height: 1.18;
}

.exhibition-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.56);
  font-size: 13px;
  line-height: 1.72;
}

.relationships {
  padding: clamp(84px, 11vw, 150px) clamp(18px, 6vw, 92px);
  border-top: 1px solid var(--line);
  background: #e9e7e0;
}

.relationships-heading {
  display: grid;
  grid-template-columns: 80px minmax(0, 1fr) minmax(240px, 380px);
  gap: 30px;
  align-items: end;
  margin-bottom: 58px;
}

.relationships-heading h2 {
  max-width: 880px;
  margin: 0;
  font-family: var(--display-zh);
  font-size: clamp(30px, 4vw, 58px);
  font-weight: 500;
  line-height: 1.08;
}

.relationships-heading > p:last-child {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.75;
}

.relationships-layout {
  display: grid;
  grid-template-columns: minmax(420px, 0.95fr) minmax(420px, 1.05fr);
  gap: clamp(38px, 6vw, 90px);
  align-items: start;
}

.about-background {
  padding: clamp(72px, 9vw, 126px) clamp(18px, 6vw, 92px);
  background: #dedbd2;
}

.about-background-heading {
  display: grid;
  grid-template-columns: minmax(70px, .22fr) minmax(280px, .72fr) minmax(280px, 1fr);
  gap: clamp(24px, 4vw, 64px);
  align-items: end;
  margin-bottom: clamp(38px, 5vw, 70px);
}

.about-background-heading h2 {
  margin: 4px 0 0;
  font-family: var(--display-zh);
  font-size: clamp(30px, 4vw, 58px);
  font-weight: 400;
  line-height: 1.05;
}

.about-background-heading > p:last-child {
  margin: 0;
  color: #5f5b53;
  font-size: 13px;
  line-height: 1.8;
}

.about-background-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid rgba(17, 17, 15, .28);
}

.about-background-grid article {
  min-height: 250px;
  padding: 28px 30px 32px 0;
  border-bottom: 1px solid rgba(17, 17, 15, .2);
}

.about-background-grid article:nth-child(even) {
  padding-right: 0;
  padding-left: 30px;
  border-left: 1px solid rgba(17, 17, 15, .2);
}

.about-background-grid article > span {
  color: var(--signal);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .08em;
}

.about-background-grid h3 {
  margin: 18px 0 12px;
  font-family: var(--display-zh);
  font-size: clamp(21px, 2.2vw, 31px);
  font-weight: 400;
}

.about-background-grid p {
  margin: 0 0 20px;
  color: #514e47;
  font-size: 13px;
  line-height: 1.78;
}

.about-background-grid a {
  color: var(--ink);
  font-size: 11px;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.about-background-note { background: rgba(255, 255, 255, .22); }

@media (max-width: 760px) {
  .about-background-heading { grid-template-columns: 34px 1fr; gap: 14px; }
  .about-background-heading > p:last-child { grid-column: 2; }
  .about-background-grid { grid-template-columns: 1fr; }
  .about-background-grid article,
  .about-background-grid article:nth-child(even) { min-height: 0; padding: 24px 0 28px; border-left: 0; }
}

.relationship-graph {
  position: sticky;
  top: 92px;
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border: 0;
  background: transparent;
}

.relationship-graph svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.relationship-graph line {
  stroke: #aaa79d;
  stroke-width: 0.35;
  vector-effect: non-scaling-stroke;
}

.relationship-center,
.relationship-node {
  position: absolute;
  left: var(--x, 50%);
  top: var(--y, 50%);
  transform: translate(-50%, -50%);
}

.relationship-center {
  --x: 50%;
  --y: 50%;
  z-index: 2;
  display: grid;
  width: 86px;
  height: 86px;
  place-items: center;
  border-radius: 50%;
  background: var(--ink);
  color: white;
  font-size: 12px;
  font-weight: 700;
}

.relationship-node {
  z-index: 3;
  max-width: 142px;
  padding: 9px 11px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: rgba(253, 253, 251, 0.94);
  font-size: 11px;
  line-height: 1.25;
  text-align: center;
}

.relationship-node:hover {
  border-color: var(--signal);
  color: var(--signal);
}

.relationship-list {
  border-top: 1px solid var(--ink);
}

.relationship-list article {
  display: grid;
  grid-template-columns: minmax(150px, 0.7fr) minmax(220px, 1.3fr) auto;
  gap: 24px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
  scroll-margin-top: 90px;
}

.relationship-list h3,
.relationship-list p {
  margin: 0;
}

.relationship-list h3 {
  font-family: var(--display-zh);
  font-size: 22px;
  font-weight: 600;
}

.relationship-list div p,
.relationship-list article > a {
  margin-top: 7px;
  color: var(--muted);
  font-size: 11px;
}

.relationship-list article > p {
  color: #45443f;
  font-size: 13px;
  line-height: 1.7;
}

.relationship-list article > a {
  width: max-content;
  white-space: nowrap;
}

.timeline-hero {
  display: grid;
  grid-template-columns: 80px minmax(0, 1fr) minmax(280px, 0.58fr);
  gap: 30px;
  align-items: end;
  min-height: 58svh;
  padding: clamp(90px, 12vw, 168px) clamp(18px, 6vw, 92px) clamp(68px, 8vw, 112px);
  border-bottom: 1px solid var(--line);
  background: var(--paper-bright);
}

.timeline-hero h1 {
  max-width: 900px;
  margin: 0;
  font-family: var(--display-zh);
  font-size: clamp(28px, 4.48vw, 62px);
  font-weight: 400;
  line-height: 1.04;
}

.timeline-hero-copy > p:first-child {
  margin: 0;
  color: #45443f;
  font-size: 14px;
  line-height: 1.78;
}

.chronology {
  padding: 0 clamp(18px, 6vw, 92px) clamp(90px, 12vw, 170px);
  background: #e9e7e0;
}

.chronology-period {
  display: grid;
  grid-template-columns: minmax(112px, 0.22fr) minmax(0, 1fr) minmax(170px, 0.38fr);
  gap: 30px;
  align-items: start;
  padding: clamp(72px, 9vw, 126px) 0 30px;
  border-bottom: 1px solid var(--ink);
}

.chronology-period span {
  color: var(--signal);
  font-size: 10px;
  font-weight: 600;
}

.chronology-period h2 {
  margin: 0;
  font-family: var(--display-zh);
  font-size: clamp(25px, 3.2vw, 44px);
  font-weight: 600;
}

.chronology-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.chronology-list li {
  display: grid;
  grid-template-columns: minmax(120px, 0.28fr) minmax(0, 1fr);
  gap: 30px;
  padding: 25px 0 28px;
  border-bottom: 1px solid var(--line);
  transform-origin: left center;
  transition: transform 280ms cubic-bezier(0.2, 0.9, 0.3, 1.2), background-color 240ms ease, box-shadow 240ms ease;
}

@media (hover: hover) {
  .chronology-list li:hover {
    z-index: 2;
    background: rgba(255, 255, 255, 0.46);
    box-shadow: 0 10px 30px rgba(25, 24, 20, 0.08);
    transform: scale(1.05);
  }
}

.chronology-list time {
  color: #74716a;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 11px;
  font-variant-numeric: tabular-nums;
}

.chronology-list h3,
.chronology-list p {
  margin: 0;
}

.chronology-list h3 {
  font-family: var(--display-zh);
  font-size: clamp(19px, 2vw, 28px);
  font-weight: 600;
  line-height: 1.25;
}

.chronology-list p {
  max-width: 820px;
  margin-top: 9px;
  color: #56544e;
  font-size: 13px;
  line-height: 1.72;
}

.chronology-source {
  display: inline-block;
  margin-top: 13px;
  padding-bottom: 3px;
  border-bottom: 1px solid currentColor;
  font-size: 10px;
}

.chronology-source:hover {
  color: var(--signal);
}

.chronology-feature {
  padding: 42px 0 48px !important;
}

.chronology-feature figure {
  width: min(880px, 100%);
  margin: 28px 0 0;
}

.chronology-feature figure.chronology-portrait {
  width: min(620px, 100%);
}

.chronology-feature img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: center 55%;
}

.chronology-feature figure.chronology-portrait img {
  aspect-ratio: 3 / 4;
  object-position: center;
}

.chronology-feature figcaption {
  margin-top: 9px;
  color: var(--muted);
  font-size: 9px;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto auto auto;
  gap: 30px;
  align-items: center;
  min-height: 100px;
  padding: 24px clamp(18px, 6vw, 92px);
  background: var(--ink);
  color: white;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 12px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.68);
}

.footer-links a:hover,
.footer-links a[aria-current="page"] {
  color: white;
}

.site-footer span {
  color: rgba(255, 255, 255, 0.56);
  font-size: 12px;
}

.site-pageview-counter {
  position: fixed;
  right: clamp(16px, 2.8vw, 42px);
  bottom: clamp(16px, 2.8vw, 42px);
  z-index: 25;
  color: rgba(44, 43, 39, 0.46);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 9px;
  letter-spacing: 0;
  pointer-events: none;
  transition: color 160ms ease, opacity 160ms ease;
}

body[data-page="home"] .site-pageview-counter {
  color: rgba(246, 245, 241, 0.62);
  mix-blend-mode: difference;
}

.home-institutions {
  padding: clamp(58px, 7vw, 92px) clamp(18px, 6vw, 92px) 0;
  border-top: 1px solid var(--line);
  background: #ecebe6;
}

.home-institutions-heading {
  display: grid;
  grid-template-columns: minmax(120px, 0.28fr) minmax(320px, 0.8fr) minmax(260px, 0.55fr);
  gap: 28px;
  align-items: start;
}

.home-institutions-heading h2 {
  margin: 0;
  font-family: var(--display-zh);
  font-size: clamp(24px, 3vw, 42px);
  font-weight: 400;
  line-height: 1.15;
}

.home-institutions-heading > p:last-child {
  max-width: 520px;
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.75;
}

.institution-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0 30px;
  margin: 42px 0 0;
  padding: 0;
  list-style: none;
}

.institution-list li {
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr);
  gap: 8px 12px;
  align-content: start;
  min-height: 112px;
  padding: 16px 0;
  border-top: 1px solid #bdbbb3;
}

.institution-list li > span {
  color: #8b8982;
  font-size: 10px;
  font-variant-numeric: tabular-nums;
}

.institution-list li div {
  min-width: 0;
}

.institution-list strong,
.institution-list small {
  display: block;
}

.institution-list strong {
  font-family: var(--display-zh);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.45;
}

.institution-list small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 9px;
  line-height: 1.4;
}

.institution-list em {
  grid-column: 2;
  color: #6f6d66;
  font-size: 10px;
  font-style: normal;
  line-height: 1.45;
}

.home-contact {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(240px, 0.45fr);
  gap: 32px;
  align-items: end;
  margin-top: 26px;
  padding: 28px 0 32px;
  border-top: 1px solid #aaa89f;
}

.home-contact .kicker {
  margin-bottom: 12px;
}

.home-contact h3 {
  margin: 0;
  font-family: var(--display-zh);
  font-size: 22px;
  font-weight: 400;
  line-height: 1.25;
}

.home-contact div > p:last-child {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.6;
}

.home-contact > a {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 8px 18px;
  align-items: baseline;
  padding: 13px 0;
  border-top: 1px solid #aaa89f;
  border-bottom: 1px solid #aaa89f;
}

.home-contact > a span {
  color: var(--muted);
  font-size: 11px;
}

.home-contact > a strong {
  font-size: 13px;
  font-weight: 400;
  overflow-wrap: anywhere;
}

.dialog-backdrop {
  position: fixed;
  inset: 0;
  z-index: 70;
  background: rgba(8, 8, 7, 0.72);
  backdrop-filter: blur(8px);
}

.work-dialog {
  position: fixed;
  inset: 50% auto auto 50%;
  z-index: 80;
  width: min(1240px, calc(100vw - 48px));
  max-width: none;
  height: min(820px, calc(100svh - 48px));
  max-height: none;
  grid-template-columns: minmax(0, 1.45fr) minmax(330px, 0.55fr);
  padding: 0;
  overflow: hidden;
  transform: translate(-50%, -50%);
  border: 0;
  background: var(--paper-bright);
  color: var(--ink);
}

.work-dialog[open] {
  display: grid;
}

.work-dialog::backdrop {
  background: transparent;
}

.work-dialog figure {
  display: grid;
  min-width: 0;
  margin: 0;
  place-items: center;
  overflow: hidden;
  background: #dedcd5;
}

.work-dialog figure img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.dialog-copy {
  align-self: stretch;
  padding: clamp(38px, 5vw, 72px) clamp(26px, 4vw, 56px);
  overflow-y: auto;
}

.archive-id {
  margin: 0 46px 30px 0;
  color: var(--signal);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 11px;
  overflow-wrap: anywhere;
}

.dialog-copy h2 {
  margin: 0;
  font-family: var(--display-zh);
  font-size: clamp(29px, 3.2vw, 46px);
  font-weight: 500;
  line-height: 1.08;
}

.dialog-title-en {
  margin: 12px 0 40px;
  color: var(--muted);
}

.dialog-copy dl {
  margin: 0;
  border-top: 1px solid var(--line);
}

.dialog-copy dl div {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}

.dialog-copy dt {
  color: var(--muted);
  font-size: 12px;
}

.dialog-copy dd {
  margin: 0;
  font-size: 13px;
  line-height: 1.5;
}

.dialog-statement {
  margin: 32px 0 0;
  font-family: var(--display-zh);
  font-size: 18px;
  line-height: 1.75;
}

.dialog-close {
  position: absolute;
  z-index: 2;
  top: 16px;
  right: 16px;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(253, 253, 251, 0.88);
  font-size: 24px;
  cursor: pointer;
}

.thumbnail-dialog {
  width: 100vw;
  max-width: none;
  height: 100svh;
  max-height: none;
  padding: 48px;
  overflow: hidden;
  border: 0;
  background: rgba(12, 12, 11, 0.98);
}

.thumbnail-dialog[open] {
  display: grid;
  place-items: center;
}

.thumbnail-dialog::backdrop,
.wechat-dialog::backdrop {
  background: rgba(8, 8, 7, 0.78);
  backdrop-filter: blur(8px);
}

.thumbnail-dialog img {
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 100%;
  object-fit: contain;
}

.thumbnail-close {
  border-color: rgba(255, 255, 255, 0.4);
  background: rgba(18, 18, 17, 0.78);
  color: white;
}

.wechat-dialog {
  width: min(460px, calc(100vw - 36px));
  padding: 50px;
  border: 0;
  background: var(--paper-bright);
}

.wechat-dialog h2 {
  margin: 0;
  font-family: var(--display-zh);
  font-size: 38px;
  font-weight: 500;
}

.wechat-dialog img {
  width: min(320px, 100%);
  margin: 26px auto 0;
  border: 1px solid var(--line);
}

.wechat-dialog > p:last-child {
  margin: 18px 0 0;
  color: var(--muted);
  line-height: 1.75;
  text-align: center;
}

html[lang="zh-CN"] :is(
  .hero-statement,
  .home-summary h2,
  .audience-routes h2,
  .knowledge-invite h2,
  .manifesto blockquote,
  .channel-hero h1,
  .channel-archive h1,
  .channel-about h1,
  .channel-gates strong,
  .audience-route-list strong,
  .section-heading h2,
  .archive-intro h2,
  .about h2,
  .work-card .work-caption strong,
  .project-list h3,
  .about-essentials h2,
  .about-subheading h2,
  .about-context h2,
  .about-answer-grid dt,
  .practice-intro h2,
  .faq-hero h1,
  .knowledge-hero h1,
  .practice-list h3,
  .project-channel-hero h1,
  .project-thesis h2,
  .project-source-note h2,
  .project-milestones h3,
  .project-entry h2,
  .faq-groups summary,
  .faq-next h2,
  .knowledge-next h2,
  .knowledge-summary h2,
  .entity-map h2,
  .term-section h2,
  .evidence-method h2,
  .knowledge-summary blockquote,
  .entity-relations h3,
  .term-list dt,
  .evidence-levels h3,
  .exhibitions-heading h2,
  .exhibition-copy h3,
  .exhibition-card h3,
  .relationships-heading h2,
  .relationship-list h3,
  .timeline-hero h1,
  .chronology-period h2,
  .chronology-list h3,
  .dialog-copy h2,
  .dialog-statement,
  .wechat-dialog h2,
  .home-institutions-heading h2,
  .home-contact h3
) {
  font-family: var(--display-zh);
  font-weight: 400;
  letter-spacing: 0;
}

:is(html[lang="en"], html[lang="fr"], html[lang="ja"], html[lang="ko"]) :is(
  .hero h1,
  .hero-statement,
  .home-summary h2,
  .audience-routes h2,
  .knowledge-invite h2,
  .manifesto blockquote,
  .channel-hero h1,
  .channel-archive h1,
  .channel-about h1,
  .channel-gates strong,
  .audience-route-list strong,
  .section-heading h2,
  .archive-intro h2,
  .about h2,
  .work-card .work-caption strong,
  .project-list h3,
  .about-essentials h2,
  .about-subheading h2,
  .about-context h2,
  .about-answer-grid dt,
  .practice-intro h2,
  .faq-hero h1,
  .knowledge-hero h1,
  .practice-list h3,
  .project-channel-hero h1,
  .project-thesis h2,
  .project-source-note h2,
  .project-milestones h3,
  .project-entry h2,
  .faq-groups summary,
  .faq-next h2,
  .knowledge-next h2,
  .knowledge-summary h2,
  .entity-map h2,
  .term-section h2,
  .evidence-method h2,
  .knowledge-summary blockquote,
  .entity-relations h3,
  .term-list dt,
  .evidence-levels h3,
  .exhibitions-heading h2,
  .exhibition-copy h3,
  .exhibition-card h3,
  .relationships-heading h2,
  .relationship-list h3,
  .timeline-hero h1,
  .chronology-period h2,
  .chronology-list h3,
  .dialog-copy h2,
  .dialog-statement,
  .wechat-dialog h2,
  .home-institutions-heading h2,
  .home-contact h3
) {
  font-family: var(--display-en);
  font-weight: 300;
  letter-spacing: 0;
}

.bottom-tabs {
  display: none;
}

.soundtrack-toggle {
  position: fixed;
  z-index: 46;
  bottom: 16px;
  left: 16px;
  display: grid;
  width: 36px;
  height: 36px;
  padding: 0;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 50%;
  background: rgba(17, 17, 15, 0.5);
  color: white;
  opacity: 0.68;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.15);
  backdrop-filter: blur(8px);
  cursor: pointer;
  transition: opacity 180ms ease, background 180ms ease;
}

.soundtrack-toggle:hover,
.soundtrack-toggle:focus-visible {
  opacity: 1;
  background: rgba(17, 17, 15, 0.78);
}

.soundtrack-bars {
  position: relative;
  display: flex;
  width: 13px;
  height: 13px;
  align-items: flex-end;
  justify-content: center;
  gap: 2px;
}

.soundtrack-bars i {
  width: 2px;
  height: 5px;
  background: currentColor;
  transform-origin: center bottom;
}

.soundtrack-bars i:nth-child(2) {
  height: 10px;
}

.soundtrack-bars i:nth-child(3) {
  height: 7px;
}

.soundtrack-toggle.is-playing .soundtrack-bars i {
  animation: soundtrack-level 900ms ease-in-out infinite alternate;
}

.soundtrack-toggle.is-playing .soundtrack-bars i:nth-child(2) {
  animation-delay: -420ms;
}

.soundtrack-toggle.is-playing .soundtrack-bars i:nth-child(3) {
  animation-delay: -170ms;
}

.soundtrack-toggle.is-muted .soundtrack-bars {
  opacity: 0.66;
}

.soundtrack-toggle.is-muted .soundtrack-bars::after {
  content: "";
  position: absolute;
  top: 6px;
  left: -2px;
  width: 17px;
  height: 1px;
  background: currentColor;
  transform: rotate(-45deg);
}

@keyframes soundtrack-level {
  from { transform: scaleY(0.45); }
  to { transform: scaleY(1); }
}

@media (max-width: 1100px) {
  .home-institutions-heading {
    grid-template-columns: 100px minmax(0, 1fr);
  }

  .home-institutions-heading > p:last-child {
    grid-column: 2;
  }

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

  .home-summary,
  .knowledge-invite,
  .faq-hero,
  .knowledge-hero,
  .faq-next,
  .knowledge-next,
  .knowledge-summary,
  .evidence-method,
  .source-register {
    grid-template-columns: 60px 1fr;
  }

  .semantic-answers,
  .knowledge-invite-copy,
  .faq-hero-summary,
  .knowledge-hero-copy,
  .faq-next-links,
  .knowledge-next .faq-next-links,
  .knowledge-summary blockquote,
  .evidence-levels,
  .source-register > .external-source-list {
    grid-column: 2;
  }

  .semantic-answers,
  .knowledge-invite-copy,
  .faq-hero-summary,
  .knowledge-hero-copy {
    margin-top: 36px;
  }

  .archive-tools {
    grid-template-columns: 140px minmax(0, 1fr) auto;
  }

  .category-tabs {
    grid-column: 1 / -1;
    grid-row: 2;
  }

  .result-count {
    display: none;
  }

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

  .project-list article {
    grid-template-columns: 90px 1fr 260px;
  }

  .project-list article > span {
    display: none;
  }

  .about {
    grid-template-columns: 60px 1fr;
  }

  .about-portrait,
  .about-essentials,
  .about-timeline-block,
  .about-context,
  .timeline,
  .about-links {
    grid-column: 2;
  }

  .about-portrait {
    width: min(440px, 100%);
    margin-top: 34px;
  }

  .practice-framework {
    grid-template-columns: 60px 1fr;
  }

  .practice-list {
    grid-column: 2;
    margin-top: 36px;
  }

  .project-channel-hero,
  .project-thesis,
  .project-source-note {
    grid-template-columns: 60px 1fr;
  }

  .project-channel-lead,
  .project-milestones,
  .project-source-note > div:last-child {
    grid-column: 2;
    margin-top: 36px;
  }

  .project-entry {
    grid-template-columns: 60px 1fr;
  }

  .project-entry figure,
  .project-entry > div {
    grid-column: 2;
  }

  .project-entry > div {
    margin-top: 18px;
  }

  .exhibition-feature {
    grid-template-columns: minmax(280px, 0.8fr) minmax(360px, 1.2fr);
    gap: 36px;
  }

  .exhibition-grid {
    gap: 24px;
  }

  .relationships-layout {
    grid-template-columns: 1fr;
  }

  .relationship-graph {
    position: relative;
    top: auto;
    max-width: 760px;
  }
}

@media (max-width: 760px) {
  body {
    padding-bottom: 0;
  }

  .soundtrack-toggle {
    bottom: 12px;
    left: 12px;
    width: 34px;
    height: 34px;
  }

  .site-header {
    grid-template-columns: 1fr auto;
    grid-template-rows: 56px 46px;
    height: 102px;
    padding: 0;
  }

  .brand {
    margin-left: 16px;
  }

  .channel-main {
    padding-top: 102px;
  }

  .top-nav {
    grid-column: 1 / -1;
    grid-row: 2;
    align-self: stretch;
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.18);
    color: rgba(255, 255, 255, 0.72);
  }

  .top-nav a {
    position: relative;
    display: grid;
    place-items: center;
    border-right: 1px solid rgba(255, 255, 255, 0.12);
    font-size: 11px;
    font-weight: 600;
  }

  .top-nav a:last-child {
    border-right: 0;
  }

  .top-nav a[aria-current="page"] {
    background: rgba(255, 255, 255, 0.1);
  }

  .top-nav a[aria-current="page"]::after {
    position: absolute;
    inset: auto 12px 0;
    width: auto;
    height: 2px;
    margin: 0;
  }

  .language-menu {
    margin-right: 16px;
  }

  .language-trigger {
    width: 92px;
  }

  .language-popover {
    inset: 0;
    padding: 28px 22px 48px;
  }

  .language-panel-header {
    padding-bottom: 68px;
  }

  .language-panel-header h2 {
    font-size: 30px;
  }

  .language-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 28px;
    row-gap: 44px;
  }

  .language-popover .language-choice {
    min-height: 68px;
    grid-template-columns: 14px minmax(0, 1fr);
    gap: 9px;
  }

  .language-choice-copy strong {
    font-size: 17px;
  }

  .language-choice-copy small {
    font-size: 12px;
  }

  .section-number {
    font-size: 8px;
  }

  .hero {
    min-height: 88svh;
  }

  .hero-image {
    object-position: 56% center;
  }

  .hero-copy {
    margin: 0 18px 132px;
  }

  .hero h1 {
    font-size: clamp(46px, 16.8vw, 70px);
  }

  .hero-statement {
    margin-top: 20px;
    font-size: 19px;
  }

  .hero-meta {
    min-height: 92px;
    padding: 0 18px;
  }

  .hero-meta span {
    display: block;
    padding: 18px 8px 14px 0;
  }

  .hero-meta span + span {
    padding-left: 10px;
  }

  .hero-meta b,
  .hero-meta small {
    display: block;
  }

  .hero-meta b {
    font-size: 20px;
  }

  .hero-meta small {
    margin-top: 7px;
    font-size: 9px;
    line-height: 1.35;
  }

  .manifesto {
    grid-template-columns: 34px 1fr;
    gap: 12px;
    padding: 78px 18px;
  }

  .manifesto blockquote {
    font-size: 24px;
  }

  .manifesto-credit {
    grid-column: 2;
    margin-top: 16px;
  }

  .home-summary,
  .knowledge-invite,
  .faq-hero,
  .knowledge-hero,
  .faq-next,
  .knowledge-next,
  .knowledge-summary,
  .evidence-method,
  .source-register {
    grid-template-columns: 34px 1fr;
    gap: 12px;
    padding: 76px 18px;
  }

  .home-summary h2,
  .audience-routes h2,
  .knowledge-invite h2,
  .practice-intro h2,
  .faq-hero h1,
  .knowledge-hero h1,
  .faq-next h2,
  .knowledge-next h2,
  .knowledge-summary h2,
  .entity-map h2,
  .term-section h2,
  .evidence-method h2,
  .source-register h2 {
    font-size: 26px;
  }

  .semantic-answers,
  .knowledge-invite-copy,
  .faq-hero-summary,
  .knowledge-hero-copy,
  .faq-next-links,
  .knowledge-next .faq-next-links,
  .knowledge-summary blockquote,
  .evidence-levels,
  .source-register > .external-source-list {
    grid-column: 1 / -1;
  }

  .home-summary-copy,
  .knowledge-invite > div:nth-child(2),
  .faq-hero > div:nth-child(2),
  .knowledge-hero > div:nth-child(2),
  .faq-next > div:nth-child(2),
  .knowledge-next > div:nth-child(2),
  .knowledge-summary > div,
  .evidence-method > div,
  .source-register > div {
    grid-column: 2;
  }

  .summary-actions,
  .about-primary-actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .semantic-answers {
    margin-top: 46px;
  }

  .audience-routes {
    padding: 76px 18px;
  }

  .audience-artwork {
    width: 100%;
    margin-bottom: 48px;
  }

  .audience-artwork figcaption {
    align-items: flex-start;
    flex-direction: column;
    gap: 2px;
  }

  .audience-route-list {
    grid-template-columns: 1fr;
  }

  .audience-route-list a,
  .audience-route-list a + a {
    min-height: 160px;
    padding: 20px 0;
    border-right: 0;
  }

  .audience-route-list strong {
    margin-top: 34px;
  }

  .channel-hero {
    grid-template-columns: 34px 1fr;
    gap: 12px;
    min-height: auto;
    padding: 76px 18px 58px;
  }

  .channel-hero h1,
  .channel-archive h1,
  .channel-about h1 {
    font-size: 28px;
  }

  .channel-hero > p:last-child {
    grid-column: 2;
    margin-top: 18px;
  }

  .channel-gates {
    grid-template-columns: 1fr;
  }

  .channel-gates a {
    min-height: 170px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .channel-gates a:last-child {
    border-bottom: 0;
  }

  .section {
    padding: 76px 18px;
  }

  .section-heading h2,
  .archive-intro h2,
  .about h2 {
    font-size: 32px;
  }

  .discovery-field {
    min-height: 766px;
  }

  .discover-direct {
    min-height: calc(100svh - 56px);
    padding: 10px 12px 76px;
  }

  .discover-toolbar {
    min-height: 42px;
    margin-bottom: 8px;
  }

  .discover-toolbar .circle-button {
    width: 38px;
    height: 38px;
  }

  .discovery-tile img {
    width: 100%;
    height: 100%;
  }

  .archive {
    padding: 22px 12px 76px;
  }

  .archive-hero-image {
    height: 170px;
    margin-bottom: 12px;
  }

  .archive-hero-caption {
    top: 12px;
    right: 12px;
    bottom: auto;
    left: auto;
    max-width: 190px;
    font-size: 8px;
  }

  .archive-intro {
    grid-template-columns: 34px 1fr;
    gap: 12px;
    margin: 0;
    padding: 18px 14px 16px;
  }

  .archive-note {
    margin-top: 8px;
  }

  .archive-context {
    grid-column: 2;
  }

  .archive-tools {
    top: 102px;
    grid-template-columns: 104px 112px;
    gap: 8px;
    margin-bottom: 18px;
    padding: 8px;
  }

  .search-field,
  .year-select,
  .category-tab {
    min-height: 36px;
    font-size: 11px;
  }

  .search-field {
    width: 104px;
  }

  .category-tabs {
    margin: 0 -8px -8px;
    padding: 0 8px 8px;
  }

  .works-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px 7px;
  }

  .work-card.is-wide {
    grid-column: span 2;
  }

  .work-card .work-caption strong {
    font-size: 16px;
  }

  .work-archive-code {
    font-size: 8px;
  }

  .scroll-work-preview {
    right: 7px;
    width: 58px;
  }

  .scroll-work-preview img {
    width: 56px;
    height: 56px;
  }

  .scroll-work-preview span {
    font-size: 7px;
  }

  .scroll-work-preview span:first-child {
    padding: 5px 4px;
    font-size: 12px;
  }

  .projects {
    padding: 76px 18px;
  }

  .project-list article {
    grid-template-columns: 1fr 116px;
    gap: 16px;
    min-height: 154px;
  }

  .project-list p {
    grid-column: 1;
    align-self: end;
  }

  .project-list h3 {
    grid-column: 1;
    font-size: 25px;
  }

  .project-list img {
    grid-column: 2;
    grid-row: 1 / span 2;
    height: 110px;
  }

  .about {
    grid-template-columns: 34px 1fr;
    gap: 12px;
    padding: 78px 18px;
  }

  .about-portrait,
  .about-essentials,
  .about-timeline-block,
  .about-context,
  .timeline,
  .about-links {
    grid-column: 1 / -1;
  }

  .about-portrait {
    width: 100%;
    margin-top: 42px;
  }

  .about-main {
    grid-column: 2;
  }

  .about-essentials,
  .about-timeline-block,
  .about-context {
    grid-template-columns: 1fr;
    gap: 34px;
    margin-top: 72px;
  }

  .about-context > div:last-child {
    min-width: 0;
  }

  .about-answer-grid div {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .about-links span {
    width: 100%;
    margin-left: 0;
  }

  .practice-framework {
    grid-template-columns: 34px 1fr;
    gap: 12px;
    padding: 76px 18px;
  }

  .practice-intro {
    grid-column: 2;
  }

  .practice-list {
    grid-column: 1 / -1;
    grid-template-columns: 1fr;
    margin-top: 42px;
  }

  .practice-list article,
  .practice-list article:nth-child(even) {
    min-height: 190px;
    padding: 20px 0 24px;
    border-right: 0;
  }

  .practice-list h3 {
    margin-top: 46px;
  }

  .faq-hero,
  .knowledge-hero {
    min-height: auto;
  }

  .project-channel-hero,
  .project-thesis,
  .project-source-note {
    grid-template-columns: 34px 1fr;
    gap: 12px;
    min-height: auto;
    padding: 76px 18px;
  }

  .project-channel-hero h1,
  .project-thesis h2,
  .project-source-note h2 {
    font-size: 26px;
  }

  .project-channel-lead,
  .project-milestones,
  .project-source-note > div:last-child {
    grid-column: 1 / -1;
    margin-top: 34px;
  }

  .project-index {
    top: 56px;
    gap: 22px;
    padding: 0 18px;
  }

  .project-entry {
    grid-template-columns: 34px 1fr;
    gap: 12px;
    padding: 72px 18px;
    scroll-margin-top: 108px;
  }

  .project-entry figure,
  .project-entry > div {
    grid-column: 1 / -1;
  }

  .project-entry figure {
    margin-top: 24px;
  }

  .project-entry h2 {
    font-size: 32px;
  }

  .project-entry dl div {
    grid-template-columns: 90px 1fr;
  }

  .faq-section {
    grid-template-columns: 1fr;
    gap: 48px;
    padding: 76px 18px;
  }

  .faq-index {
    position: static;
    grid-auto-flow: column;
    grid-auto-columns: max-content;
    gap: 22px;
    overflow-x: auto;
  }

  .faq-groups summary {
    padding-right: 36px;
    font-size: 22px;
  }

  .faq-groups details > p {
    padding-right: 20px;
  }

  .entity-map,
  .term-section {
    padding: 76px 18px;
  }

  .entity-map-heading,
  .term-heading {
    grid-template-columns: 34px 1fr;
    gap: 12px;
  }

  .entity-relations {
    grid-template-columns: 1fr;
  }

  .entity-relations article,
  .entity-relations article:nth-child(3n + 2),
  .entity-relations article:nth-child(3n + 3) {
    min-height: 210px;
    padding: 20px 0 24px;
    border-right: 0;
  }

  .entity-relations h3 {
    margin-top: 48px;
  }

  .term-list {
    margin-left: 0;
  }

  .term-list div {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .knowledge-summary blockquote {
    margin-top: 32px;
    font-size: 25px;
  }

  .timeline {
    margin-top: 42px;
  }

  .exhibitions {
    padding: 76px 18px;
  }

  .exhibitions-heading {
    grid-template-columns: 34px 1fr;
    gap: 12px;
    margin-bottom: 42px;
  }

  .exhibitions-heading h2 {
    font-size: 32px;
  }

  .exhibitions-heading > p:last-child {
    grid-column: 2;
    margin-top: 12px;
  }

  .exhibition-feature {
    grid-template-columns: 1fr;
    padding-top: 28px;
  }

  .exhibition-image--poster {
    max-width: 440px;
  }

  .exhibition-copy {
    padding-top: 12px;
  }

  .exhibition-copy > .kicker {
    margin-top: 38px;
  }

  .exhibition-copy h3 {
    font-size: 38px;
  }

  .exhibition-facts {
    grid-template-columns: 1fr;
    margin-top: 34px;
  }

  .exhibition-grid {
    grid-template-columns: 1fr;
    gap: 54px;
    margin-top: 76px;
    padding-top: 28px;
  }

  .exhibition-card h3 {
    font-size: 30px;
  }

  .relationships {
    padding: 76px 18px;
  }

  .relationships-heading {
    grid-template-columns: 34px 1fr;
    gap: 12px;
    margin-bottom: 38px;
  }

  .relationships-heading h2 {
    font-size: 32px;
  }

  .relationships-heading > p:last-child {
    grid-column: 2;
    margin-top: 12px;
  }

  .relationships-layout {
    gap: 42px;
  }

  .relationship-graph {
    aspect-ratio: 1 / 1;
  }

  .relationship-center {
    width: 70px;
    height: 70px;
    font-size: 10px;
  }

  .relationship-node {
    max-width: 100px;
    padding: 7px 8px;
    font-size: 9px;
  }

  .relationship-list article {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .relationship-list article > a {
    margin-top: 0;
  }

  .timeline article {
    grid-template-columns: 82px 1fr;
  }

  .site-footer {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 24px 18px;
  }

  .footer-links {
    justify-self: start;
  }

  .timeline-hero {
    grid-template-columns: 34px 1fr;
    gap: 12px;
    min-height: auto;
    padding: 76px 18px 64px;
  }

  .timeline-hero h1 {
    font-size: 28px;
  }

  .timeline-hero-copy {
    grid-column: 1 / -1;
    margin-top: 30px;
  }

  .chronology {
    padding: 0 18px 96px;
  }

  .chronology-period {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 70px 0 24px;
  }

  .chronology-people {
    grid-column: 1 / -1;
    grid-row: auto;
    margin-top: 8px;
    padding: 14px 0 0;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .chronology-period h2 {
    font-size: 27px;
  }

  .chronology-list li {
    grid-template-columns: 74px 1fr;
    gap: 16px;
    padding: 21px 0 24px;
  }

  .chronology-list h3 {
    font-size: 19px;
  }

  .chronology-feature {
    grid-template-columns: 1fr !important;
  }

  .chronology-feature > div {
    grid-column: 1;
  }

  .home-contact {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 24px 0 28px;
  }

  .home-institutions {
    padding: 58px 18px 0;
  }

  .home-institutions-heading {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .home-institutions-heading > p:last-child {
    grid-column: auto;
  }

  .institution-list {
    grid-template-columns: 1fr;
    margin-top: 32px;
  }

  .institution-list li {
    min-height: 0;
  }

  .site-footer span:nth-child(2) {
    display: none;
  }

  .work-dialog {
    width: 100vw;
    height: 100svh;
    grid-template-columns: 1fr;
    grid-template-rows: minmax(300px, 48svh) 1fr;
  }

  .thumbnail-dialog {
    padding: 58px 12px 20px;
  }

  .wechat-dialog {
    padding: 42px 26px;
  }

  .dialog-copy {
    padding: 28px 20px 60px;
  }

  .dialog-copy h2 {
    font-size: 38px;
  }

  .bottom-tabs {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
    animation: none !important;
  }
}
.chronology-people { grid-column: 3; grid-row: 1; display: flex; flex-wrap: wrap; align-items: center; gap: 6px 8px; min-width: 0; margin: 0; padding-left: 20px; border-left: 1px solid var(--line); }
.chronology-people > span { width: 100%; color: #77736b; font-size: 10px; letter-spacing: .08em; }
.chronology-people button { border: 1px solid rgba(17,17,15,.28); border-radius: 999px; padding: 5px 10px; background: transparent; color: var(--ink); font: inherit; font-size: 12px; cursor: pointer; }
.chronology-people button:hover, .chronology-people button:focus-visible { background: var(--ink); color: #f4f1e9; }

@media (max-width: 680px) {
  .chronology-people {
    grid-column: 1 / -1;
    grid-row: auto;
    margin-top: 8px;
    padding: 14px 0 0;
    border-top: 1px solid var(--line);
    border-left: 0;
  }
}
