:root {
  --paper: #f7f5ef;
  --paper-warm: #efe9dd;
  --surface: #fffdfa;
  --surface-strong: #ffffff;
  --ink: #162126;
  --muted: #667173;
  --line: rgba(22, 33, 38, 0.14);
  --line-strong: rgba(22, 33, 38, 0.24);
  --teal: #147c78;
  --teal-dark: #0e5553;
  --amber: #b7791f;
  --rust: #954f43;
  --blue: #3e6482;
  --plum: #6e5772;
  --shadow: 0 18px 60px rgba(31, 35, 37, 0.12);
  --radius: 8px;
  --container: 1180px;
  --header-height: 64px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 18px);
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
  letter-spacing: 0;
  overflow-x: hidden;
}

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

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

button,
input,
select {
  font: inherit;
}

.skip-link {
  position: fixed;
  top: 0;
  left: 12px;
  z-index: 30;
  transform: translateY(calc(-100% - 8px));
  background: var(--ink);
  color: #fff;
  padding: 8px 12px;
  border-radius: 6px;
}

.skip-link:focus {
  transform: translateY(12px);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 24px;
  padding: 10px clamp(18px, 4vw, 44px);
  background: rgba(247, 245, 239, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  max-width: min(920px, calc(100vw - 36px));
  font-weight: 700;
}

.brand-logo {
  width: 124px;
  height: 34px;
  object-fit: contain;
  object-position: left center;
  flex: 0 0 auto;
}

.brand-text {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.top-nav {
  display: flex;
  align-items: center;
  gap: clamp(12px, 2vw, 26px);
  color: var(--muted);
  font-size: 14px;
}

.top-nav a {
  white-space: nowrap;
}

.top-nav a:hover,
.top-nav a:focus-visible {
  color: var(--ink);
}

.hero {
  position: relative;
  min-height: calc(100svh - var(--header-height));
  min-height: calc(100dvh - var(--header-height));
  padding: clamp(70px, 10dvh, 136px) clamp(18px, 5vw, 72px) clamp(38px, 7dvh, 72px);
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(247, 245, 239, 0.98) 0%, rgba(247, 245, 239, 0.88) 40%, rgba(247, 245, 239, 0.28) 100%),
    linear-gradient(0deg, rgba(247, 245, 239, 0.96) 0%, rgba(247, 245, 239, 0.18) 44%);
  z-index: 1;
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-copy {
  position: relative;
  z-index: 2;
  width: min(100%, 840px);
  max-width: 840px;
}

.eyebrow,
.mini-label {
  margin: 0 0 10px;
  color: var(--teal-dark);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 800px;
  margin-bottom: 18px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(42px, 4.8vw, 72px);
  font-weight: 500;
  line-height: 1.04;
  overflow-wrap: break-word;
}

.hero-subtitle {
  max-width: 670px;
  margin-bottom: 18px;
  color: #2f3c40;
  font-size: clamp(21px, 3vw, 32px);
  line-height: 1.2;
}

.hero-summary {
  max-width: 720px;
  margin-bottom: 30px;
  color: var(--muted);
  font-size: 17px;
}

.hero-actions,
.paper-controls {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 10px 16px;
  border: 1px solid var(--line-strong);
  border-radius: 6px;
  background: rgba(255, 253, 250, 0.72);
  color: var(--ink);
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
}

.button:hover,
.button:focus-visible {
  border-color: var(--ink);
  background: var(--surface-strong);
}

.button-primary {
  border-color: var(--ink);
  background: var(--ink);
  color: #fff;
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--teal-dark);
  border-color: var(--teal-dark);
}

.button:disabled {
  cursor: not-allowed;
  opacity: 0.45;
}

.hero-stats {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  width: min(560px, calc(100vw - 36px));
  margin: clamp(36px, 7dvh, 82px) 0 0;
  border-top: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line-strong);
}

.hero-stats div {
  padding: 18px 18px 16px 0;
  border-right: 1px solid var(--line);
}

.hero-stats div:last-child {
  border-right: 0;
}

.hero-stats dt {
  font-size: clamp(28px, 5vw, 48px);
  font-weight: 800;
  line-height: 1;
}

.hero-stats dd {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.content-section {
  padding: clamp(68px, 9vw, 112px) clamp(18px, 5vw, 72px);
  border-bottom: 1px solid var(--line);
  min-height: clamp(620px, calc(100svh - var(--header-height)), 920px);
  min-height: clamp(620px, calc(100dvh - var(--header-height)), 920px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.content-section[id] {
  scroll-margin-top: calc(var(--header-height) + 18px);
}

.section-heading {
  max-width: var(--container);
  margin: 0 auto 34px;
}

.section-heading h2 {
  max-width: 860px;
  margin-bottom: 14px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(34px, 5vw, 58px);
  font-weight: 500;
  line-height: 1.04;
}

.section-heading p:not(.eyebrow) {
  max-width: 760px;
  color: var(--muted);
  font-size: 17px;
}

.definition-section {
  background: var(--surface);
}

.runtime-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(320px, 0.6fr);
  gap: 20px;
  max-width: var(--container);
  margin: 0 auto 28px;
  align-items: stretch;
}

.runtime-figure {
  margin: 0;
  padding: clamp(18px, 4vw, 34px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fbfaf7;
  box-shadow: var(--shadow);
}

.runtime-figure img {
  width: 100%;
  border-radius: 4px;
  background: #fff;
}

.runtime-figure figcaption {
  max-width: 850px;
  margin-top: 18px;
  color: var(--muted);
  font-size: 14px;
}

.runtime-notes {
  display: grid;
  gap: 12px;
}

.runtime-notes article {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface-strong);
}

.runtime-notes span {
  display: inline-flex;
  margin-bottom: 12px;
  color: var(--amber);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.runtime-notes h3 {
  margin-bottom: 8px;
  font-size: 18px;
  line-height: 1.2;
}

.runtime-notes p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 14px;
}

.path-grid,
.surface-grid,
.status-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  max-width: var(--container);
  margin: 0 auto;
}

.path-card,
.surface-card,
.status-grid article,
.timeline-item {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface-strong);
}

.path-card {
  padding: 24px;
  min-height: 210px;
}

.path-card h3,
.surface-card h3,
.status-grid h3,
.timeline-item h3 {
  margin-bottom: 10px;
  font-size: 21px;
  line-height: 1.18;
}

.path-card p:last-child,
.surface-card p,
.status-grid p,
.timeline-item p {
  margin-bottom: 0;
  color: var(--muted);
}

.path-external {
  border-top: 4px solid var(--teal);
}

.path-parameter {
  border-top: 4px solid var(--amber);
}

.path-meta {
  border-top: 4px solid var(--plum);
}

.timeline-section {
  background: var(--paper-warm);
}

.timeline {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  max-width: var(--container);
  margin: 0 auto;
}

.timeline-figure {
  max-width: var(--container);
  margin: 20px auto 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface-strong);
  overflow: hidden;
}

.timeline-figure img {
  width: 100%;
  padding: 18px;
  background: #fff;
}

.timeline-figure figcaption {
  padding: 13px 16px 15px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.timeline-item {
  position: relative;
  min-height: 276px;
  padding: 26px;
  overflow: hidden;
}

.timeline-item::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  background: var(--teal);
}

.timeline-item:nth-child(2)::before {
  background: var(--blue);
}

.timeline-item:nth-child(3)::before {
  background: var(--rust);
}

.timeline-item time {
  display: inline-flex;
  margin-bottom: 46px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.timeline-item span {
  display: block;
  margin-top: 18px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 700;
}

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

.surface-card {
  min-height: 228px;
  padding: 22px;
}

.surface-card span {
  display: inline-flex;
  margin-bottom: 28px;
  color: var(--amber);
  font-size: 13px;
  font-weight: 900;
}

.surface-card:nth-child(2n) span {
  color: var(--teal);
}

.surface-card:nth-child(3n) span {
  color: var(--rust);
}

.figures-section {
  background: var(--surface);
}

.figure-strip {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  max-width: var(--container);
  margin: 0 auto;
  align-items: stretch;
}

.single-figure {
  max-width: var(--container);
  margin: 0 auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface-strong);
  overflow: hidden;
}

.single-figure img {
  width: 100%;
  padding: 18px;
  background: #fff;
}

.single-figure figcaption {
  padding: 14px 16px 16px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.figure-strip figure {
  display: flex;
  min-width: 0;
  flex-direction: column;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  overflow: hidden;
}

.figure-strip img {
  width: 100%;
  height: 280px;
  object-fit: contain;
  padding: 18px;
  background: #f8f8f6;
}

.figure-strip figcaption {
  padding: 14px 16px 16px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.claim-section,
.consolidation-section {
  background: var(--surface);
}

.external-section,
.measurement-section {
  background: var(--paper-warm);
}

.claim-layout,
.figure-story {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(280px, 0.82fr);
  gap: 20px;
  max-width: var(--container);
  margin: 0 auto;
  align-items: stretch;
}

.claim-points {
  display: grid;
  gap: 12px;
  min-width: 0;
}

.claim-points article,
.story-copy {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface-strong);
}

.claim-points article {
  padding: 18px;
}

.claim-points span {
  display: inline-flex;
  margin-bottom: 10px;
  color: var(--amber);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.claim-points h3,
.story-copy h3 {
  margin-bottom: 8px;
  font-size: 20px;
  line-height: 1.18;
}

.claim-points p,
.story-copy p {
  margin-bottom: 0;
  color: var(--muted);
}

.story-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(18px, 3vw, 28px);
}

.story-points {
  display: grid;
  gap: 10px;
  margin: 18px 0 0;
  padding-left: 18px;
  color: var(--muted);
}

.story-points li::marker {
  color: var(--teal);
}

.figure-grid {
  display: grid;
  gap: 18px;
  max-width: var(--container);
  margin: 0 auto;
}

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

.figure-grid figure {
  display: flex;
  min-width: 0;
  flex-direction: column;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface-strong);
  overflow: hidden;
}

.figure-grid img {
  width: 100%;
  height: clamp(240px, 24vw, 330px);
  object-fit: contain;
  padding: 16px;
  background: #fff;
}

.figure-grid figcaption {
  flex: 1;
  padding: 14px 16px 16px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.external-figure-stack {
  display: grid;
  gap: 24px;
  max-width: var(--container);
  margin: 0 auto;
}

.external-figure-card {
  margin: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface-strong);
  overflow: hidden;
}

.external-figure-card img {
  width: 100%;
  height: clamp(520px, 58vw, 760px);
  object-fit: contain;
  padding: clamp(16px, 2.5vw, 28px);
  background: #fff;
}

.external-figure-card figcaption {
  padding: 16px 20px 18px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.5;
}

.manuscript-structure {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  max-width: var(--container);
  margin: 0 auto;
}

.part-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface-strong);
  overflow: hidden;
}

.part-card > h3 {
  margin: 0;
  padding: 18px 20px;
  border-bottom: 1px solid var(--line);
  background: #eef8f5;
  font-size: 19px;
  line-height: 1.22;
}

.part-label {
  display: block;
  padding: 14px 20px 0;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.manuscript-section-card > h3 {
  border-bottom: 0;
  background: transparent;
  padding-top: 8px;
  padding-bottom: 8px;
}

.section-list {
  display: grid;
}

.section-list > ul {
  display: grid;
  gap: 6px;
  margin: 0;
  padding: 0 20px 18px 38px;
  color: var(--muted);
  font-size: 13px;
}

.structure-section {
  padding: 16px 20px 18px;
  border-bottom: 1px solid var(--line);
}

.structure-section:last-child {
  border-bottom: 0;
}

.structure-section h4 {
  margin: 0 0 10px;
  font-size: 16px;
  line-height: 1.25;
}

.structure-section ul {
  display: grid;
  gap: 5px;
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  font-size: 13px;
}

.papers-section {
  background: #f2f6f4;
  min-height: auto;
}

.papers-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
}

.catalog-stats {
  display: flex;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface-strong);
}

.catalog-stats div {
  min-width: 104px;
  padding: 14px 18px;
  border-right: 1px solid var(--line);
}

.catalog-stats div:last-child {
  border-right: 0;
}

.catalog-stats dt {
  font-size: 32px;
  font-weight: 900;
  line-height: 1;
}

.catalog-stats dd {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 12px;
}

.paper-controls {
  max-width: var(--container);
  margin: 0 auto 18px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface-strong);
}

.paper-controls label {
  display: flex;
  min-width: 190px;
  flex: 1 1 220px;
  flex-direction: column;
  gap: 5px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.paper-controls .search-box {
  flex: 2 1 360px;
}

.paper-controls input,
.paper-controls select {
  width: 100%;
  min-height: 42px;
  border: 1px solid var(--line-strong);
  border-radius: 6px;
  background: #fff;
  color: var(--ink);
  padding: 9px 11px;
  font-size: 14px;
  letter-spacing: 0;
  text-transform: none;
}

.reset-button {
  align-self: end;
  min-width: 92px;
}

.paper-pagination {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  max-width: var(--container);
  margin: 0 auto 14px;
  color: var(--muted);
  font-size: 14px;
}

.paper-pagination p {
  margin: 0;
  font-weight: 800;
}

.paper-pagination-bottom {
  justify-content: center;
  margin-top: 16px;
  margin-bottom: 0;
}

.page-size-control {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.page-size-control select {
  min-height: 36px;
  border: 1px solid var(--line-strong);
  border-radius: 6px;
  background: #fff;
  color: var(--ink);
  padding: 7px 9px;
  font-size: 14px;
  letter-spacing: 0;
  text-transform: none;
}

#page-indicator {
  min-width: 110px;
  color: var(--ink);
  font-weight: 800;
  text-align: center;
}

.paper-table-wrap {
  max-width: var(--container);
  margin: 0 auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface-strong);
  overflow: auto;
}

.paper-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 760px;
  font-size: 14px;
}

.paper-table th,
.paper-table td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.paper-table th {
  position: sticky;
  top: 0;
  z-index: 1;
  background: #e7efeb;
  color: #314245;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.paper-table tr:last-child td {
  border-bottom: 0;
}

.paper-date {
  width: 90px;
  color: var(--muted);
  white-space: nowrap;
}

.chapter-pill {
  display: inline-flex;
  max-width: 170px;
  padding: 4px 8px;
  border: 1px solid rgba(20, 124, 120, 0.22);
  border-radius: 6px;
  background: #edf8f5;
  color: var(--teal-dark);
  font-size: 12px;
  font-weight: 800;
}

.paper-title-wrap {
  display: grid;
  gap: 4px;
  min-width: 260px;
}

.paper-title-wrap a,
.paper-title-wrap > span:first-child {
  color: var(--ink);
  font-weight: 800;
  line-height: 1.28;
}

.paper-title-wrap a:hover,
.paper-title-wrap a:focus-visible {
  color: var(--teal-dark);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.paper-title-wrap span:last-child {
  color: var(--muted);
  font-size: 12px;
}

.empty-state {
  padding: 34px;
  color: var(--muted);
  text-align: center;
}

.status-section {
  background: var(--paper);
}

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

.status-grid article {
  padding: 24px;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 28px clamp(18px, 5vw, 72px);
  background: var(--ink);
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
}

.site-footer p {
  margin: 0;
}

@media (max-width: 980px) {
  .top-nav {
    display: none;
  }

  .hero {
    min-height: auto;
    padding-top: 86px;
  }

  .hero::before {
    background: rgba(247, 245, 239, 0.88);
  }

  .hero-copy {
    max-width: 100%;
  }

  .path-grid,
  .timeline,
  .runtime-layout,
  .status-grid,
  .figure-strip,
  .claim-layout,
  .figure-story,
  .figure-grid-three,
  .manuscript-structure {
    grid-template-columns: 1fr;
  }

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

  .papers-heading {
    align-items: stretch;
    flex-direction: column;
  }
}

@media (max-width: 980px) {
  .site-header {
    align-items: center;
    gap: 18px;
  }

  .brand {
    max-width: 100%;
  }

  .paper-pagination {
    align-items: stretch;
    flex-direction: column;
  }

  .paper-pagination-bottom {
    align-items: center;
    flex-direction: row;
    justify-content: space-between;
  }

  .paper-table-wrap {
    overflow: visible;
    border: 0;
    background: transparent;
  }

  .paper-table {
    min-width: 0;
    border-collapse: separate;
    border-spacing: 0 12px;
  }

  .paper-table thead {
    display: none;
  }

  .paper-table,
  .paper-table tbody,
  .paper-table tr,
  .paper-table td {
    display: block;
    width: 100%;
  }

  .paper-table tr {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--surface-strong);
    overflow: hidden;
  }

  .paper-table td {
    display: grid;
    grid-template-columns: 92px minmax(0, 1fr);
    gap: 12px;
    padding: 12px 14px;
    border-bottom: 1px solid var(--line);
  }

  .paper-table td::before {
    content: attr(data-label);
    color: var(--muted);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }

  .paper-table tr td:last-child {
    border-bottom: 0;
  }

  .paper-table .empty-state {
    display: block;
    text-align: center;
  }

  .paper-table .empty-state::before {
    display: none;
  }

  .chapter-pill {
    max-width: 100%;
  }

  .paper-title-wrap {
    min-width: 0;
  }
}

@media (max-width: 640px) {
  .site-header {
    min-height: 58px;
  }

  .brand-text {
    display: none;
  }

  .hero {
    min-height: calc(100svh - 58px);
    min-height: calc(100dvh - 58px);
    padding-bottom: 28px;
  }

  h1 {
    max-width: 100%;
    font-size: clamp(36px, 10vw, 42px);
    line-height: 1.05;
  }

  .hero-copy {
    width: 100%;
    max-width: 100%;
  }

  .hero-subtitle,
  .hero-summary {
    max-width: 100%;
  }

  .hero-subtitle {
    font-size: 21px;
  }

  .hero-stats {
    grid-template-columns: 1fr;
    width: 100%;
    max-width: 100%;
    margin-top: 42px;
  }

  .hero-actions {
    width: 100%;
  }

  .hero-actions .button {
    flex: 1 1 100%;
    min-width: 0;
  }

  .hero-stats div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .hero-stats div:last-child {
    border-bottom: 0;
  }

  .content-section {
    min-height: auto;
    padding-top: 58px;
    padding-bottom: 58px;
  }

  .section-heading,
  .runtime-figure,
  .runtime-layout,
  .runtime-notes,
  .path-grid,
  .timeline,
  .timeline-figure,
  .surface-grid,
  .figure-strip,
  .claim-layout,
  .claim-points,
  .figure-story,
  .figure-grid,
  .external-figure-stack,
  .single-figure,
  .manuscript-structure,
  .paper-controls,
  .paper-table-wrap,
  .paper-pagination,
  .status-grid {
    width: 100%;
    max-width: 100%;
    margin-left: 0;
    margin-right: 0;
  }

  .runtime-grid,
  .surface-grid {
    grid-template-columns: 1fr;
  }

  .runtime-node {
    min-height: 102px;
  }

  .figure-grid img,
  .external-figure-card img,
  .figure-strip img {
    height: auto;
  }

  .paper-controls {
    align-items: stretch;
  }

  .reset-button {
    align-self: stretch;
  }

  .catalog-stats {
    width: 100%;
  }

  .catalog-stats div {
    flex: 1;
  }

  .site-footer {
    flex-direction: column;
  }
}
