:root {
  --bg: #f5f4ef;
  --bg-soft: #ece8dc;
  --surface: rgba(255, 255, 255, 0.84);
  --surface-strong: #ffffff;
  --ink: #102a2c;
  --muted: #526365;
  --line: rgba(16, 42, 44, 0.12);
  --primary: #0f7b7b;
  --primary-deep: #0a5155;
  --secondary: #ef8c3a;
  --moss: #7a9258;
  --coral: #cc5c4c;
  --gold: #d9b44a;
  --cyan: #27a7b8;
  --shadow: 0 20px 50px rgba(17, 37, 40, 0.12);
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at top left, rgba(15, 123, 123, 0.14), transparent 28%),
    radial-gradient(circle at top right, rgba(239, 140, 58, 0.16), transparent 24%),
    linear-gradient(180deg, #f8f7f2 0%, #f2efe7 100%);
  color: var(--ink);
  font-family: "Space Grotesk", sans-serif;
}

a {
  color: var(--primary-deep);
}

img {
  display: block;
  width: 100%;
  height: auto;
}

.site-navbar {
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(16px);
  background: rgba(248, 247, 242, 0.8);
  border-bottom: 1px solid rgba(16, 42, 44, 0.08);
}

.site-navbar .navbar-item,
.site-navbar .navbar-link {
  color: var(--ink);
  font-weight: 500;
}

.site-navbar .navbar-item:hover {
  background: transparent;
  color: var(--primary);
}

.brand-mark {
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.hero-main {
  position: relative;
  overflow: hidden;
}

.hero-main::before,
.hero-main::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  filter: blur(12px);
  opacity: 0.7;
  pointer-events: none;
}

.hero-main::before {
  width: 24rem;
  height: 24rem;
  background: rgba(15, 123, 123, 0.12);
  top: -8rem;
  left: -6rem;
}

.hero-main::after {
  width: 18rem;
  height: 18rem;
  background: rgba(239, 140, 58, 0.16);
  right: -4rem;
  top: 4rem;
}

.hero-body {
  padding: 4.5rem 1.5rem 3rem;
}

.hero-grid {
  position: relative;
  z-index: 1;
}

.eyebrow,
.section-kicker,
.sidecard-label {
  color: var(--primary);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.publication-title,
.section-title {
  color: var(--ink);
  font-family: "Source Serif 4", serif;
  line-height: 0.98;
}

.publication-title {
  margin-top: 0.4rem;
  margin-bottom: 0.7rem;
}

.hero-subtitle {
  color: var(--muted);
  font-size: 1.45rem;
  line-height: 1.3;
  max-width: 52rem;
}

.publication-authors {
  margin: 1.4rem 0 1rem;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.9;
}

.publication-authors a {
  color: var(--ink) !important;
  text-decoration: none;
}

.publication-authors a:hover {
  color: var(--primary) !important;
}

.author-block {
  display: inline;
}

.author-sep {
  margin: 0 0.45rem;
  color: rgba(16, 42, 44, 0.35);
}

.hero-summary,
.section-copy,
.split-copy,
.task-copy,
.visual-caption,
.sample-meta,
.stats-intro,
.resource-card p,
.timeline-item p,
.paper-points p,
.site-footer p {
  color: var(--muted);
  line-height: 1.72;
}

.hero-summary {
  max-width: 50rem;
  font-size: 1.05rem;
  margin: 1.2rem 0 1.4rem;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.project-chip,
.split-badge,
.sample-chip,
.mode-badge {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 0.5rem 0.9rem;
  font-size: 0.82rem;
  font-weight: 700;
}

.split-badge {
  font-size: 16px;
  font-weight: 600;  /* 加粗 */
}

.project-chip {
  background: rgba(15, 123, 123, 0.1);
  color: var(--primary-deep);
  border: 1px solid rgba(15, 123, 123, 0.14);
}

.publication-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-bottom: 2rem;
}

.link-block {
  display: inline-flex;
}

.link-block .button {
  box-shadow: 0 10px 30px rgba(17, 37, 40, 0.08);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.metric-card,
.hero-sidecard,
.feature-card,
.split-card,
.timeline-card,
.task-card,
.sample-card,
.stats-card,
.paper-card,
.resource-card {
  border: 1px solid var(--line);
  background: var(--surface);
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}

.metric-card {
  border-radius: 0.9rem;
  padding: 1.1rem 1rem;
}

.metric-value {
  margin: 0;
  font-size: 1.85rem;
  font-weight: 700;
  color: var(--ink);
}

.metric-label {
  margin: 0.2rem 0 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.hero-sidecard,
.paper-card {
  border-radius: 1.05rem;
  padding: 1.25rem;
}

.hero-sidecard img,
.paper-card img {
  border-radius: 0.75rem;
  border: 1px solid rgba(16, 42, 44, 0.08);
}

.sidecard-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.2rem;
}

.sidecard-key {
  margin: 0;
  color: var(--muted);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.sidecard-value {
  margin: 0.3rem 0 0;
  font-weight: 600;
  line-height: 1.45;
}

.section-shell {
  padding: 1.5rem 1.5rem 4rem;
}

.section-accent {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0)),
    linear-gradient(180deg, rgba(15, 123, 123, 0.04), rgba(15, 123, 123, 0.02));
}

.section-title {
  margin-bottom: 1rem;
}

.keyword-row,
.split-grid,
.task-grid,
.sample-grid,
.resource-grid,
.capability-grid,
.paper-points {
  display: grid;
  gap: 1.2rem;
}

.keyword-row {
  grid-template-columns: repeat(3, max-content);
  margin-top: 1.6rem;
  align-items: center;
  gap: 0.8rem;
}

.keyword-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  padding: 0.7rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(15, 123, 123, 0.14);
  background: rgba(15, 123, 123, 0.08);
  color: var(--primary-deep);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.split-card h3,
.task-card h3,
.stats-card h3,
.resource-card h3,
.timeline-item h3,
.paper-points h3 {
  color: var(--ink);
  margin: 0.7rem 0 0.5rem;
  font-size: 1.08rem;
}

.split-card p,
.task-card p,
.resource-card p,
.timeline-item p,
.paper-points p,
.capability-grid p {
  margin: 0;
}

.cap-icon,
.resource-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 999px;
  background: rgba(15, 123, 123, 0.1);
  color: var(--primary-deep);
  font-size: 1.1rem;
}

.visual-panel {
  overflow: hidden;
  border-radius: 1rem;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.62);
  box-shadow: var(--shadow);
}

.visual-panel img {
  max-height: 46rem;
  object-fit: cover;
}

.visual-caption {
  margin: 0;
  padding: 1rem 1.2rem 1.2rem;
}

.large-panel img {
  max-height: none;
}

.split-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 1.5rem;
}

.split-card {
  border-radius: 1rem;
  padding: 1.4rem;
}

.split-header {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  margin-bottom: 0.9rem;
}

.split-badge,
.sample-chip,
.mode-badge {
  width: fit-content;
  background: rgba(15, 123, 123, 0.1);
  color: var(--primary-deep);
}

.accent-secondary {
  background: rgba(239, 140, 58, 0.14);
  color: #8f4d10;
}

.accent-tertiary {
  background: rgba(122, 146, 88, 0.16);
  color: #4d6034;
}

.compact-list {
  margin: 1rem 0 0;
  padding-left: 1.1rem;
  color: var(--ink);
}

.compact-list li {
  margin-bottom: 0.4rem;
}

.code-panel {
  margin: 1rem 0 0;
  padding: 1rem 1.1rem;
  border-radius: 0.75rem;
  background: #142224;
  color: #f3f4f1;
  overflow-x: auto;
  font-size: 0.84rem;
  line-height: 1.6;
}

.code-panel.compact {
  margin-top: 1rem;
}

.timeline-card {
  border-radius: 1rem;
  padding: 1.4rem;
}

.timeline-item {
  position: relative;
  display: grid;
  grid-template-columns: 1.2rem 1fr;
  gap: 1rem;
  padding-bottom: 1.35rem;
}

.timeline-item:last-child {
  padding-bottom: 0;
}

.timeline-item:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 0.56rem;
  top: 1rem;
  bottom: 0;
  width: 1px;
  background: rgba(16, 42, 44, 0.16);
}

.timeline-dot {
  width: 1rem;
  height: 1rem;
  margin-top: 0.15rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  box-shadow: 0 0 0 6px rgba(15, 123, 123, 0.08);
}

.pipeline-stack {
  display: grid;
  gap: 1rem;
}

.construction-panel {
  margin-top: 0;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.construction-grid {
  display: grid;
  grid-template-columns: minmax(0, 2.55fr) minmax(13rem, 1fr) minmax(13rem, 1fr);
  gap: 1rem;
  margin-top: 1.3rem;
  align-items: stretch;
}

.construction-panel img {
  width: 100%;
  max-height: 28.5rem;
  object-fit: contain;
}

.construction-panel .visual-caption {
  padding: 0.8rem 1rem 1rem;
  font-size: 0.92rem;
  line-height: 1.52;
}

.pipeline-card {
  border: 1px solid var(--line);
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow);
  overflow: hidden;
  padding: 0.92rem 0.72rem 0.8rem;
  min-height: 100%;
  display: flex;
  flex-direction: column;
}

.pipeline-card.benchmark {
  border-top: 4px solid var(--secondary);
}

.pipeline-card.training {
  border-top: 4px solid var(--primary);
}

.pipeline-title {
  margin: 0 0 0.6rem;
  color: var(--ink);
  font-size: 1.02rem;
  font-family: "Manrope", sans-serif;
  font-weight: 800;
  line-height: 1.12;
  text-align: center;
  text-wrap: balance;
}

.pipeline-summary {
  margin: 0 0 0.9rem;
  color: var(--muted);
  line-height: 1.52;
  font-size: 0.84rem;
}

.pipeline-steps {
  display: grid;
  grid-template-rows: repeat(4, minmax(0, 1fr));
  gap: 0.72rem;
  flex: 1;
  margin-top: 0.45rem;
}

.pipeline-step {
  display: grid;
  grid-template-columns: 2.2rem 1fr;
  gap: 0.62rem;
  align-items: center;
  padding: 0.48rem 0.64rem 0.48rem 0.58rem;
  border-radius: 0.62rem;
  background: rgba(250, 249, 245, 0.96);
  border: none;
  box-shadow: 0 8px 18px rgba(17, 37, 40, 0.05);
  min-height: 3.45rem;
}

.pipeline-card.benchmark .pipeline-step {
  background: linear-gradient(180deg, rgba(255, 248, 242, 0.96), rgba(255, 255, 255, 0.94));
}

.pipeline-card.training .pipeline-step {
  background: linear-gradient(180deg, rgba(243, 251, 249, 0.96), rgba(255, 255, 255, 0.94));
}

.step-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 1.7rem;
  border-radius: 0.48rem;
  background: linear-gradient(135deg, rgba(15, 123, 123, 0.12), rgba(239, 140, 58, 0.14));
  color: var(--primary-deep);
  font-size: 0.78rem;
  font-weight: 700;
}

.pipeline-step h4 {
  margin: 0;
  color: var(--ink);
  font-size: 1rem;
  line-height: 1.3;
  font-weight: 700;
}

.pipeline-step p {
  margin: 0;
  color: var(--muted);
  line-height: 1.48;
  font-size: 0.82rem;
}

.task-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 1.5rem;
}

.task-card {
  border-radius: 1rem;
  padding: 1.5rem;
}

.task-card h3 {
  font-size: 1.7rem;
  font-family: "Source Serif 4", serif;
  margin-top: 0;
}

.task-name {
  margin: 0 0 0.8rem;
  color: var(--primary-deep);
  font-weight: 700;
}

.ratio-block {
  margin-top: 1rem;
}

.ratio-label {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  color: var(--ink);
  font-size: 0.88rem;
  font-weight: 600;
}

.ratio-bar {
  width: 100%;
  height: 0.72rem;
  margin-top: 0.45rem;
  border-radius: 999px;
  background: rgba(15, 123, 123, 0.1);
  overflow: hidden;
}

.ratio-bar span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
}

.ratio-bar.training {
  background: rgba(239, 140, 58, 0.12);
}

.ratio-bar.training span {
  background: linear-gradient(90deg, var(--secondary), #f2c056);
}

.tab-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1.5rem 0 1.3rem;
}

.tab-button {
  appearance: none;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.7rem 1rem;
  background: rgba(255, 255, 255, 0.6);
  color: var(--ink);
  cursor: pointer;
  font: inherit;
  font-weight: 700;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.tab-button:hover {
  transform: translateY(-1px);
}

.tab-button.is-active {
  background: var(--primary-deep);
  color: #ffffff;
  border-color: transparent;
}

.tab-panels {
  position: relative;
}

.example-panel {
  display: none;
  border-radius: 1.05rem;
  padding: 1.4rem;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow);
}

.example-panel.is-active {
  display: block;
}

.task-granularity-grid,
.task-visual-grid {
  display: grid;
  gap: 1.2rem;
}

.task-granularity-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 1.4rem;
}

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

.task-metric-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.2rem;
  margin-top: 0.35rem;
}

.task-metric {
  margin: 0;
}

.task-subcard {
  padding: 1.2rem;
}

#task .task-subcard .sample-chip {
  border-radius: 0.95rem;
  margin-top: -0.35rem;
  margin-bottom: 0.6rem;
  padding: 0.42rem 0.85rem;
}

.task-subcard h4 {
  margin: 1rem 0 0.5rem;
  color: var(--ink);
  font-size: 1.02rem;
}

.task-subcard p {
  margin: 0;
}

.task-subcard .example-meta {
  margin-top: 0.7rem;
}

.task-note-card {
  border: 1px solid var(--line);
  border-radius: 0.9rem;
  background: rgba(255, 255, 255, 0.82);
  padding: 1rem 1.05rem;
  box-shadow: 0 12px 28px rgba(17, 37, 40, 0.08);
}

.task-note-card + .task-note-card {
  margin-top: 1rem;
}

.task-note-card-accent {
  background: linear-gradient(180deg, rgba(15, 123, 123, 0.09), rgba(255, 255, 255, 0.94));
}

.task-note-label {
  margin: 0 0 0.8rem;
  color: var(--primary-deep);
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

#task .image-bottom-caption {
  position: static;
  transform: none;
  margin: 0.75rem auto 0.95rem;
  width: 72%;
  min-width: 10.5rem;
  max-width: calc(100% - 1.4rem);
  padding: 0.34rem 0.95rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.96);
  color: var(--ink);
  font-size: 0.76rem;
  line-height: 1.2;
  text-align: center;
  box-shadow: 0 10px 24px rgba(17, 37, 40, 0.08);
}

#task .image-bottom-caption strong {
  font-weight: 700;
}

#task .crop-preview-figure {
  justify-self: start;
  align-self: start;
  width: auto;
  max-width: 100%;
}

#task .crop-preview-figure img {
  width: auto;
  max-width: 100%;
}

@media screen and (min-width: 1024px) {
  #task .task-visual-column {
    flex: none;
    width: 54%;
  }

  #task .task-note-column {
    flex: none;
    width: 46%;
  }
}

.doc-stack {
  position: relative;
  height: 23.6rem;
  padding: 0.9rem 0.85rem 1rem;
  background:
    radial-gradient(circle at top left, rgba(15, 123, 123, 0.08), transparent 35%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(246, 243, 234, 0.9));
}

.doc-page {
  position: absolute;
  width: 76%;
  max-width: 30rem;
  overflow: hidden;
  box-shadow: 0 14px 34px rgba(17, 37, 40, 0.12);
}

.doc-page-back {
  left: 0.85rem;
  top: 0.9rem;
  z-index: 1;
}

.doc-page-mid {
  left: 2.05rem;
  top: 2.25rem;
  z-index: 2;
}

.doc-page-front {
  right: 0.85rem;
  top: 3.65rem;
  z-index: 3;
}

.doc-page img {
  width: 100%;
  max-height: 23rem;
  object-fit: cover;
}

.doc-stack-label {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  z-index: 4;
  display: inline-flex;
  align-items: center;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  background: rgba(16, 42, 44, 0.78);
  color: #ffffff;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.example-title {
  margin: 1rem 0 0.9rem;
  font-size: 1.4rem;
  font-family: "Source Serif 4", serif;
}

.example-query {
  color: var(--ink);
  font-size: 1.02rem;
  line-height: 1.7;
}

.example-answer,
.example-meta {
  color: var(--muted);
  line-height: 1.65;
}

.bbox-figure,
.image-frame {
  position: relative;
  overflow: hidden;
  border-radius: 0.8rem;
  border: 1px solid rgba(16, 42, 44, 0.1);
  background: #ffffff;
}

.image-pair {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.sample-pair {
  padding: 1rem;
}

.mpmr-stack {
  position: relative;
  height: 23rem;
  padding: 0.9rem 0.85rem 1rem;
}

.mpmr-stack .bbox-figure {
  position: absolute;
  width: 61%;
  box-shadow: 0 14px 34px rgba(17, 37, 40, 0.12);
}

.mpmr-left {
  top: 0.9rem;
  left: 0.85rem;
  z-index: 1;
}

.mpmr-right {
  right: 0.85rem;
  top: 6.1rem;
  z-index: 2;
}

.mpmr-stack .bbox-figure img {
  max-height: 16rem;
  object-fit: cover;
}

.bbox-figure img,
.image-frame img {
  width: 100%;
}

.image-bottom-caption {
  position: absolute;
  left: 50%;
  bottom: 0.9rem;
  transform: translateX(-50%);
  margin: 0;
  padding: 0.42rem 0.85rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
  text-align: center;
  line-height: 1.2;
  box-shadow: 0 8px 22px rgba(17, 37, 40, 0.12);
}

.bbox-rect {
  position: absolute;
  border-radius: 0.3rem;
  border: 4px solid;
  background: rgba(255, 255, 255, 0.04);
  box-shadow: 0 0 0 9999px rgba(15, 19, 20, 0.08);
}

.bbox-rect.gold {
  border-color: var(--gold);
}

.bbox-rect.cyan {
  border-color: var(--cyan);
}

.bbox-rect.coral {
  border-color: var(--coral);
}

.bbox-rect.moss {
  border-color: var(--moss);
}

.sample-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 1.5rem;
}

.sample-card {
  overflow: hidden;
  border-radius: 1rem;
}

.sample-content {
  padding: 1.1rem 1.15rem 1.25rem;
}

.sample-query,
.sample-answer {
  line-height: 1.65;
}

.sample-query {
  color: var(--ink);
  margin: 0.7rem 0 0.6rem;
}

.sample-answer {
  color: var(--muted);
  margin: 0;
}

.small img {
  max-height: 23rem;
  object-fit: cover;
}

.stats-card {
  border-radius: 1rem;
  padding: 1.4rem;
  height: 100%;
}

.stats-card-wide {
  width: 100%;
}

.bar-group {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem 1.4rem;
  margin-top: 1.3rem;
}

.bar-row + .bar-row {
  margin-top: 0;
}

.bar-meta {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.45rem;
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 600;
}

.bar-track {
  height: 0.8rem;
  border-radius: 999px;
  background: rgba(16, 42, 44, 0.08);
  overflow: hidden;
}

.bar-track span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
}

.capability-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 1.25rem;
}

.capability-grid article {
  padding: 1rem;
  border-radius: 0.8rem;
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid rgba(16, 42, 44, 0.08);
}

.capability-grid h4 {
  margin: 0.65rem 0 0.45rem;
}

.wide-panel {
  margin-top: 1.5rem;
}

.wide-panel img {
  max-height: none;
}

.results-summary-grid,
.results-grid {
  display: grid;
  gap: 1.2rem;
}

.results-summary-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 1.5rem;
}

.result-highlight {
  border-radius: 1rem;
  padding: 1.2rem 1.25rem;
  background:
    linear-gradient(135deg, rgba(15, 123, 123, 0.1), rgba(255, 255, 255, 0.9)),
    var(--surface);
}

.results-eyebrow,
.results-label {
  margin: 0;
  color: var(--primary);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.results-name {
  margin: 0.55rem 0 0;
  color: var(--ink);
  font-size: 1.02rem;
  font-weight: 700;
}

.results-value {
  margin: 0.32rem 0 0;
  color: var(--primary-deep);
  font-size: 1.72rem;
  font-weight: 700;
  line-height: 1.1;
}

.results-detail {
  margin: 0.35rem 0 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.5;
}

.results-grid {
  grid-template-columns: 1fr;
  margin-top: 1.5rem;
}

.results-card {
  border-radius: 1rem;
  padding: 1.35rem;
}

.results-card-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}

.results-card h3 {
  margin: 0.35rem 0 0;
  color: var(--ink);
  font-size: 1.12rem;
}

.results-subtitle {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.results-table-shell {
  overflow-x: auto;
  border: 1px solid rgba(16, 42, 44, 0.08);
  border-radius: 0.9rem;
  background: rgba(255, 255, 255, 0.76);
}

.results-table {
  width: max-content;
  min-width: 100%;
  margin: 0;
  background: transparent;
}

.results-table th,
.results-table td {
  white-space: nowrap;
  border-color: rgba(16, 42, 44, 0.08);
  vertical-align: middle;
}

.results-table thead th {
  background: rgba(15, 123, 123, 0.08);
  color: var(--ink);
  font-size: 0.9rem;
}

.results-table tbody td:first-child {
  font-weight: 600;
  color: var(--ink);
}

.results-best {
  background: rgba(15, 123, 123, 0.1);
  color: var(--primary-deep);
  font-weight: 700;
}

.results-footnote {
  margin: 0.9rem 0 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.results-analysis-head {
  margin-top: 1.8rem;
}

.results-analysis-title {
  margin: 0.35rem 0 0.35rem;
  color: var(--ink);
  font-size: 1.35rem;
}

.results-figure-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.2rem;
  margin-top: 1.25rem;
}

.results-figure-card {
  overflow: hidden;
}

.results-task1-pair {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(0, 0.95fr);
  gap: 0;
  padding: 0;
  align-items: stretch;
}

.results-task1-panel {
  display: flex;
  align-items: stretch;
  min-height: 33rem;
  overflow: hidden;
}

.results-task1-panel img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: rgba(255, 255, 255, 0.85);
}

.results-figure-card img {
  background: rgba(255, 255, 255, 0.85);
}

.results-figure-wide {
  grid-column: 1 / -1;
}

.paper-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.1rem;
}

.paper-points {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 1.35rem;
}

.paper-points article {
  padding: 1rem 1.05rem;
  border-radius: 0.8rem;
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid rgba(16, 42, 44, 0.08);
}

.resource-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 1.5rem;
}

.resource-card {
  display: block;
  border-radius: 1rem;
  padding: 1.35rem;
  color: inherit;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.resource-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 52px rgba(17, 37, 40, 0.15);
}

.resource-card h3 {
  margin-top: 0.9rem;
}

.citation-card {
  margin-top: 1.5rem;
  border: 1px solid var(--line);
  border-radius: 1rem;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.8);
  box-shadow: var(--shadow);
}

.citation-card .section-copy {
  margin-top: 0;
  margin-bottom: 1rem;
}

.citation-block {
  margin: 0;
  padding: 1.15rem 1.25rem;
  border-radius: 0.9rem;
  background: rgba(16, 42, 44, 0.95);
  color: #f4f4ee;
  overflow-x: auto;
  white-space: pre-wrap;
  word-break: break-word;
}

.citation-block code {
  font-size: 0.95rem;
  line-height: 1.65;
}

.site-footer {
  padding: 2.5rem 1.5rem 3rem;
  background: rgba(16, 42, 44, 0.96);
}

.site-footer h3 {
  color: #f4f4ee;
  margin-bottom: 0.55rem;
}

.site-footer a {
  color: #f4f4ee;
  text-decoration: underline;
}

.site-footer p {
  color: rgba(244, 244, 238, 0.8);
}

@media screen and (max-width: 1215px) {
  .hero-stats,
  .keyword-row,
  .split-grid,
  .task-grid,
  .sample-grid,
  .resource-grid,
  .results-summary-grid,
  .construction-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media screen and (max-width: 900px) {
  .hero-body {
    padding-top: 3.7rem;
  }

  .publication-title {
    font-size: 3.1rem !important;
  }

  .hero-subtitle {
    font-size: 1.2rem;
  }

  .hero-stats,
  .keyword-row,
  .split-grid,
  .task-grid,
  .sample-grid,
  .resource-grid,
  .paper-points,
  .capability-grid,
  .construction-grid,
  .results-summary-grid,
  .results-figure-grid,
  .task-granularity-grid,
  .task-visual-grid,
  .task-metric-grid {
    grid-template-columns: 1fr;
  }

  .results-task1-pair {
    grid-template-columns: 1fr;
  }

  .results-task1-panel {
    min-height: 24rem;
  }

  .sidecard-grid {
    grid-template-columns: 1fr;
  }

  .bar-group {
    grid-template-columns: 1fr;
  }

  .section-shell {
    padding-bottom: 3.2rem;
  }
}

@media screen and (max-width: 768px) {
  .site-navbar .navbar-menu {
    background: rgba(248, 247, 242, 0.96);
  }

  .publication-links {
    gap: 0.65rem;
  }

  .link-block,
  .link-block .button {
    width: 100%;
  }

  .paper-links .button {
    width: 100%;
  }

  .hero-body,
  .section-shell,
  .site-footer {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .metric-card,
  .hero-sidecard,
  .split-card,
  .task-card,
  .sample-card,
  .stats-card,
  .paper-card,
  .resource-card,
  .timeline-card,
  .example-panel {
    border-radius: 0.85rem;
  }

  .section-title {
    font-size: 2rem !important;
  }

  .publication-title {
    font-size: 2.6rem !important;
  }

  .tab-bar {
    flex-direction: column;
  }

  .tab-button {
    width: 100%;
    text-align: left;
  }

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

  .keyword-chip {
    width: 100%;
    justify-content: flex-start;
  }

  .image-pair {
    grid-template-columns: 1fr;
  }

  .mpmr-stack {
    position: static;
    height: auto;
    padding: 1rem;
  }

  .mpmr-stack .bbox-figure {
    position: relative;
    width: 100%;
  }

  .mpmr-left,
  .mpmr-right {
    top: auto;
    left: auto;
    right: auto;
  }
}
