html {
  color-scheme: light;
  scroll-behavior: smooth;
}

html,
body {
  height: 100%;
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "Source Sans 3", ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial,
    sans-serif;
  font-size: 16px;
  line-height: 1.58;
}

:root {
  --bg: #ffffff;
  --academic-bg: #f4f2ea;
  --academic-bg-mid: #ebe8de;
  --academic-bg-deep: #e3dfd3;
  --academic-wash: 244, 242, 234;
  --surface: #f6f7f9;
  --surface2: #eef0f4;
  --border: rgba(0, 0, 0, 0.1);
  --text: #1a1d24;
  --muted: rgba(26, 29, 36, 0.68);
  --accent: #9a7a18;
  --accent-soft: rgba(154, 122, 24, 0.12);
  --page-pad-inline: clamp(4rem, 15vw, 22rem);
  --page-pad-top: 3rem;
  --abstract-max-width: 100%;
  --abstract-pad-bottom: 6rem;
  --paper-intro-pad-top: 3rem;
  --title-hero-overlay: rgba(0, 0, 0, 0.1);
}

.academic-surface {
  width: 100vw;
  max-width: 100vw;
  margin: 0 calc(50% - 50vw);
  background: var(--academic-bg);
}

/* Abstract: plain white background. */
.abstract-teaser-zone {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  background: #fff;
}

.academic-band {
  position: relative;
  width: 100%;
  max-width: 100%;
  margin: 0;
  background: transparent;
}

.page {
  min-height: 100%;
  width: 100%;
  max-width: min(1600px, 100%);
  margin: 0 auto;
  padding: var(--page-pad-top) var(--page-pad-inline) 6rem;
  box-sizing: border-box;
  overflow-x: clip;
}

/* Full-viewport title — looping background video (Dex1B-style). */
.title-hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  isolation: isolate;
  color: #fff;
  text-align: center;
}

.title-hero__video {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  pointer-events: none;
}

.title-hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: var(--title-hero-overlay);
}

.title-hero__top {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.35rem clamp(1.25rem, 4vw, 2.75rem);
  box-sizing: border-box;
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
}

.title-hero__brand {
  font-family: "Source Sans 3", ui-sans-serif, system-ui, sans-serif;
  font-size: clamp(0.95rem, 1.6vw, 1.08rem);
  font-weight: 700;
  letter-spacing: 0.04em;
  background: linear-gradient(90deg, #2d39e6 0%, #6ca4f2 45%, #71c978 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: none;
}

.title-hero__date {
  font-family: "Source Sans 3", ui-sans-serif, system-ui, sans-serif;
  font-size: clamp(0.95rem, 1.6vw, 1.08rem);
  font-style: normal;
  background: linear-gradient(90deg, #2d39e6 0%, #6ca4f2 45%, #71c978 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: none;
}

.title-hero__content {
  position: relative;
  z-index: 2;
  width: min(98rem, 100vw);
  /* Logo ↔ 胶囊按钮间距：只改 --logo-to-links-gap，padding-bottom 会自动抵消总高度 */
  --logo-to-links-gap: 3.25rem;
  padding: 5rem clamp(0.5rem, 1.2vw, 1rem)
    calc(4.5rem - (var(--logo-to-links-gap) - 2rem));
  box-sizing: border-box;
}

.title-hero__title {
  margin: 0 0 1.75rem;
  font-family: "Source Sans 3", ui-sans-serif, system-ui, sans-serif;
  font-weight: 700;
  font-size: clamp(2.55rem, 5.4vw, 5.85rem);
  line-height: 1.06;
  letter-spacing: -0.022em;
  color: #fff;
  text-shadow: 0 2px 28px rgba(0, 0, 0, 0.45);
}

@media (min-width: 820px) {
  .title-hero__title {
    white-space: nowrap;
  }
}

.title-hero__authors {
  margin: 0 0 1.15rem;
  font-family: "Source Sans 3", ui-sans-serif, system-ui, sans-serif;
  font-size: clamp(1.05rem, 1.65vw, 1.28rem);
  font-weight: 600;
  font-style: normal;
  line-height: 1.65;
  letter-spacing: -0.015em;
  color: rgba(255, 255, 255, 0.94);
  text-shadow: 0 1px 16px rgba(0, 0, 0, 0.4);
}

@media (min-width: 900px) {
  .title-hero__authors {
    white-space: nowrap;
  }
}

.title-hero__author {
  white-space: nowrap;
}

.title-hero__author a {
  color: inherit;
  text-decoration: none;
  transition: color 0.15s ease, opacity 0.15s ease;
}

.title-hero__author a:hover,
.title-hero__author a:focus-visible {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

.title-hero__authors sup {
  font-size: 0.68em;
  font-weight: 600;
  margin-left: 0.05em;
}

.title-hero__authors sup.title-hero__eq {
  font-size: 0.42em;
  font-weight: 500;
  margin: 0 0.02em 0 0.04em;
  opacity: 0.92;
}

.title-hero__eq {
  font-weight: 600;
  line-height: 0;
  vertical-align: super;
  color: rgba(255, 255, 255, 0.88);
}

.title-hero__affiliations .title-hero__eq {
  font-size: 0.52em;
  margin-right: 0.2em;
}

.title-hero__affiliations {
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  gap: 0.9rem;
  max-width: 100%;
  margin: 0 auto;
  padding: 0;
  list-style: none;
  font-size: clamp(0.72rem, 1vw, 0.9rem);
  line-height: 1.35;
  color: rgba(255, 255, 255, 0.94);
  text-shadow: 0 1px 5px rgba(45, 48, 54, 0.82), 0 0 14px rgba(45, 48, 54, 0.55);
}

.title-hero__affiliations li {
  margin: 0;
  white-space: nowrap;
}

.title-hero__affiliations sup {
  font-size: 0.75em;
  margin-right: 0.15em;
}

.title-hero__affil-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 2.25rem 3.15rem;
  margin: 0.75rem 0 0;
}

.title-hero__affil-logo {
  display: block;
  width: auto;
  height: clamp(4.2rem, 6.8vw, 5.2rem);
  max-width: clamp(10rem, 18vw, 14rem);
  object-fit: contain;
  opacity: 0.92;
}

.title-hero__equal-note {
  margin: 0.55rem 0 0;
  font-size: clamp(0.92rem, 1.45vw, 1.05rem);
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.72);
}

.title-hero__equal-note .title-hero__eq {
  font-size: 0.52em;
  margin-right: 0.2em;
}

.title-hero__links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.75rem;
  margin-top: var(--logo-to-links-gap, 2rem);
}

.title-hero__link {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.58rem 1.28rem;
  border-radius: 999px;
  background: rgba(42, 45, 52, 0.48);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: #fff;
  font-family: "Source Sans 3", ui-sans-serif, system-ui, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.12);
  transition: background 0.15s ease, border-color 0.15s ease, transform 0.15s ease;
}

.title-hero__link:hover {
  background: rgba(58, 62, 72, 0.62);
  border-color: rgba(255, 255, 255, 0.28);
  transform: translateY(-1px);
}

.title-hero__link:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.85);
  outline-offset: 3px;
}

.title-hero__link-icon {
  width: 1.22rem;
  height: 1.22rem;
  flex-shrink: 0;
  display: block;
}

.title-hero__link-icon--arxiv {
  width: 1.32rem;
  height: 1.32rem;
  object-fit: contain;
}

.abstract-teaser-zone .paper-intro {
  padding: var(--paper-intro-pad-top) 0 var(--abstract-pad-bottom);
}

.paper-intro {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: 0 var(--page-pad-inline) var(--abstract-pad-bottom);
  box-sizing: border-box;
  background: transparent;
}

.paper-intro .paper-blurb {
  margin: 0 auto;
  width: 100%;
  max-width: var(--abstract-max-width);
}

.paper-blurb .blurb-heading {
  text-align: center;
}

.blurb-heading {
  margin: 0 0 0.85rem;
  font-family: "Source Sans 3", ui-sans-serif, system-ui, sans-serif;
  font-size: 1.52rem;
  font-weight: 600;
  color: var(--text);
}

.blurb-text {
  margin: 0 0 1rem;
  max-width: 100%;
  width: 100%;
  color: var(--muted);
  font-size: 1.05rem;
}

.blurb-text:last-child {
  margin-bottom: 0;
}

.blurb-text em {
  color: rgba(26, 29, 36, 0.82);
  font-style: italic;
}

.blurb-text strong {
  color: var(--text);
  font-weight: 600;
}

.section-title {
  margin: 0 0 0.5rem;
  font-family: "Source Sans 3", ui-sans-serif, system-ui, sans-serif;
  font-size: 1.48rem;
  font-weight: 600;
  color: var(--text);
}

.checkpoint-demo-heading {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.65rem 1rem;
  margin-bottom: 0.5rem;
}

.checkpoint-demo-heading .section-title {
  margin: 0;
}

.checkpoint-code-btn {
  display: inline-flex;
  align-items: center;
  padding: 0.42rem 1rem;
  border-radius: 999px;
  background: var(--text);
  color: #fff;
  font-family: "Source Sans 3", ui-sans-serif, system-ui, sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  line-height: 1;
  text-decoration: none;
  border: 1px solid transparent;
  transition: background 0.15s ease, transform 0.15s ease;
}

.checkpoint-code-btn:hover {
  background: #2a2d34;
  transform: translateY(-1px);
}

.checkpoint-code-btn:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

.worldstring-gradient {
  background: linear-gradient(90deg, #2d39e6 0%, #6ca4f2 45%, #71c978 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.section-lead {
  margin: 0 0 1.5rem;
  max-width: 100%;
  width: 100%;
  font-size: 1.03rem;
  color: var(--muted);
}

.section-lead + .viz-footnote {
  margin-top: -1rem;
}

.paper-figure-section {
  width: 100%;
  max-width: 100%;
  margin-bottom: 2.5rem;
}

.paper-figure-section .section-lead strong {
  color: var(--text);
  font-weight: 600;
}

.paper-figure-wrap {
  margin: 0;
  max-width: 100%;
}

.paper-figure-img {
  width: 100%;
  height: auto;
  display: block;
}

.paper-figure-caption {
  margin: 0.5rem 0 0;
  font-size: 0.82rem;
  color: var(--muted);
}

.pipeline-section {
  width: 100%;
  max-width: 100%;
  margin-bottom: 2.5rem;
  overflow-x: clip;
}

/* Flush with page: no card chrome — video pixels meet --bg seamlessly. */
.pipeline-video-wrap {
  margin: 0;
  width: 100%;
  max-width: 100%;
  border: none;
  border-radius: 0;
  overflow: visible;
  background: var(--bg);
  box-shadow: none;
  box-sizing: border-box;
}

.pipeline-video {
  width: 100%;
  max-width: 100%;
  height: auto;
  max-height: min(70vh, 620px);
  display: block;
  background: var(--bg);
  object-fit: contain;
}

.pipeline-caption {
  margin: 0.5rem 0 0;
  padding: 0;
  border: none;
  font-size: 0.82rem;
  color: var(--muted);
}

.viz-section {
  width: 100%;
  max-width: 100%;
  margin-bottom: 2.5rem;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.academic-band .viz-reveal-wrap,
.academic-band .viz-section,
.paper-teaser-zone .viz-reveal-wrap {
  background: transparent;
}

.paper-teaser-zone .viz-reveal-wrap {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1.75rem 0 2.25rem;
}

.academic-band .viz-section {
  position: relative;
  z-index: 0;
  margin-top: 0;
  padding: 0.75rem 0 0;
  box-sizing: border-box;
  background: transparent;
}

.viz-reveal-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1.75rem 0 2.25rem;
}

.viz-reveal-wrap.is-hidden {
  visibility: hidden;
  pointer-events: none;
  opacity: 0;
}

.viz-more-wrap.is-hidden {
  display: none;
}

.viz-more-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1.75rem 0 2.25rem;
}

.viz-more-block.is-hidden {
  display: none;
}

.viz-reveal {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.85rem;
  padding: 0.65rem 1.25rem;
  font-family: inherit;
  color: var(--text);
  background: transparent;
  border: none;
  cursor: pointer;
  animation: viz-reveal-pulse 0.65s ease-in-out infinite;
}

.viz-reveal:hover {
  animation-play-state: paused;
  opacity: 0.88;
}

.viz-reveal:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 4px;
  border-radius: 6px;
}

.viz-reveal__arrows {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
  line-height: 0;
}

.viz-reveal__arrow {
  display: block;
  width: 1.65rem;
  height: 1.65rem;
  margin: -0.58rem 0;
  border-right: 4px solid var(--accent);
  border-bottom: 4px solid var(--accent);
  transform: rotate(45deg);
  filter: drop-shadow(0 1px 2px rgba(154, 122, 24, 0.35));
}

.viz-reveal__label {
  font-family: "Source Sans 3", ui-sans-serif, system-ui, sans-serif;
  font-size: 1.22rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.2;
  background: linear-gradient(
    105deg,
    #1e5fa8 0%,
    #2d8f6f 38%,
    #9a7a18 72%,
    #c45a9a 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

@keyframes viz-reveal-pulse {
  0%,
  100% {
    transform: translateY(0);
    opacity: 1;
  }
  50% {
    transform: translateY(10px);
    opacity: 0.55;
  }
}

.viz-panel__body.is-collapsed {
  display: none;
}

.viz-panel__body .section-title {
  margin-bottom: 0.5rem;
}

.viz-panel__body .section-lead {
  margin-top: 0;
}

.viz-subsection-title {
  margin: 2.25rem 0 0.85rem;
  font-family: "Source Sans 3", ui-sans-serif, system-ui, sans-serif;
  font-size: 1.28rem;
  font-weight: 600;
  color: var(--text);
  letter-spacing: 0.01em;
}

.viz-subsection-title--first {
  margin-top: 1.35rem;
}

.viz-subsection-lead {
  margin-bottom: 1.25rem;
}

.viz-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  align-items: stretch;
}

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

/* Equal-width columns: long text in the third card must not widen the grid track. */
.viz-grid--cols3 > .viz-card {
  min-width: 0;
  width: 100%;
  max-width: 100%;
}

/* Same canvas geometry: width follows column; height from fixed aspect (columns share width → same size). */
.viz-grid--cols3 .viewer {
  flex: 0 0 auto;
  width: 100%;
  aspect-ratio: 4 / 3;
  min-height: 0;
}

.viz-grid--cols4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.viz-grid--cols4 > .viz-card {
  min-width: 0;
  width: 100%;
  max-width: 100%;
}

.viz-grid--cols4 .viewer {
  flex: 0 0 auto;
  width: 100%;
  aspect-ratio: 4 / 3;
  min-height: 0;
}

.viz-grid--cols4 .inline-video--panel {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: contain;
  background: var(--surface2);
}

@media (max-width: 1400px) {
  .viz-grid--cols4:not(.viz-grid--train-row) {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 1200px) {
  .viz-grid--cols3 {
    grid-template-columns: 1fr;
  }

  .viz-grid--cols4:not(.viz-grid--train-row) {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  .viz-grid--train-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .viz-grid--train-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  .viz-grid {
    grid-template-columns: 1fr;
  }
}

.viz-card {
  background: linear-gradient(165deg, var(--surface) 0%, var(--surface2) 100%);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.07);
}

.viz-card::before {
  content: "";
  height: 3px;
  background: linear-gradient(90deg, var(--accent-soft), transparent 60%);
}

.viz-card-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.85rem 1rem 0.5rem;
}

.viz-card-title {
  margin: 0;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.viz-card-meta {
  font-size: 0.55rem;
  color: var(--muted);
  text-align: right;
  max-width: 55%;
  word-break: break-word;
}

.viewer {
  flex: 1;
  min-height: 280px;
  position: relative;
  background: radial-gradient(ellipse 80% 60% at 50% 40%, #f3f5f8 0%, #e6e9ef 100%);
}

/* In 3-col grids, .viz-grid--cols3 .viewer overrides flex/min-height for equal canvases. */
.viewer--kp {
  min-height: 280px;
}

/* Reserves the same vertical space as the keypoint "Sync…" row so the canvas height matches. */
.controls-sync-spacer {
  min-height: 2.35rem;
  pointer-events: none;
}

.viewer canvas {
  width: 100%;
  height: 100%;
  display: block;
}

.viewer-loading {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 1.25rem;
  box-sizing: border-box;
  background: rgba(243, 245, 248, 0.88);
  pointer-events: none;
}

.viewer-loading[hidden] {
  display: none;
}

.viewer-loading__text {
  margin: 0;
  max-width: 16rem;
  font-size: 0.88rem;
  line-height: 1.45;
  text-align: center;
  color: var(--muted);
}

.viewer--loading canvas {
  visibility: hidden;
}

.inline-video {
  width: 100%;
  height: auto;
  display: block;
  background: var(--bg);
}

.controls {
  padding: 0.65rem 1rem 1rem;
  border-top: 1px solid var(--border);
  display: grid;
  grid-template-columns: minmax(0, max-content) minmax(0, 1fr);
  gap: 0.5rem 0.65rem;
  align-items: center;
  box-sizing: border-box;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
}

/* Sync checkbox / spacer on its own row; Pause + frame slider share one row. */
.controls > .row--checkbox,
.controls > .controls-sync-spacer {
  grid-column: 1 / -1;
}

.controls > button {
  grid-column: 1;
  justify-self: start;
  max-width: 100%;
}

.controls > .row:not(.row--checkbox) {
  grid-column: 2;
  min-width: 0;
  width: 100%;
  overflow: hidden;
}

/* Compact playback row inside viz cards (3- and 4-col grids). */
.viz-card .controls {
  padding: 0.5rem 0.6rem 0.7rem;
  gap: 0.4rem 0.45rem;
}

.viz-card .controls > button {
  padding: 0.3rem 0.45rem;
  font-size: 0.72rem;
  line-height: 1.2;
  white-space: nowrap;
}

.viz-card .controls > .row:not(.row--checkbox) {
  gap: 0.35rem;
}

/* "Frame" label removed in narrow cards — slider + counter stay on one line. */
.viz-card .controls > .row:not(.row--checkbox) .label {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.viz-card .controls .value {
  min-width: 2.5rem;
  font-size: 0.72rem;
  font-variant-numeric: tabular-nums;
  flex: 0 0 auto;
}

.viz-card .controls input[type="range"] {
  flex: 1 1 0;
  min-width: 0;
  width: 100%;
  max-width: 100%;
}

.row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  min-width: 0;
}

.row--checkbox {
  justify-content: flex-start;
}

.row--checkbox .label {
  white-space: normal;
  line-height: 1.25;
}

.label {
  font-size: 0.8rem;
  color: var(--muted);
  white-space: nowrap;
}

.value {
  font-size: 0.8rem;
  min-width: 4.5rem;
  text-align: right;
  color: var(--muted);
  flex: 0 0 auto;
}

input[type="range"] {
  flex: 1 1 0;
  min-width: 0;
  max-width: 100%;
}

button {
  background: #fff;
  color: var(--text);
  border: 1px solid var(--border);
  padding: 0.45rem 0.85rem;
  border-radius: 8px;
  font-size: 0.85rem;
  font-family: inherit;
  cursor: pointer;
}

button:hover {
  background: var(--surface2);
  border-color: rgba(0, 0, 0, 0.14);
}

button:disabled,
button.is-awaiting-frame:disabled {
  background: var(--surface2);
  color: rgba(26, 29, 36, 0.38);
  border-color: rgba(0, 0, 0, 0.08);
  cursor: not-allowed;
}

button:disabled:hover,
button.is-awaiting-frame:disabled:hover {
  background: var(--surface2);
  border-color: rgba(0, 0, 0, 0.08);
}

.viz-footnote {
  margin: 0.5rem 0 0;
  font-size: 0.82rem;
  color: var(--muted);
  max-width: 100%;
  width: 100%;
}

.site-footer {
  width: 100%;
  max-width: 100%;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  font-size: 0.82rem;
  color: var(--muted);
}

.site-footer p {
  margin: 0;
}

.site-footer cite {
  font-style: normal;
  font-weight: 600;
  color: var(--text);
}
