:root {
  --paper: #eef2ff;
  --paper-2: #dce5ff;
  --ink: #10142f;
  --muted: #5f6682;
  --line: #aeb9dc;
  --blue: #1638f0;
  --blue-dark: #0921a4;
  --red: #ff3d24;
  --mint: #c4ffdd;
  --yellow: #fff23d;
  --white: #fbfcff;
  --max: 1440px;
  --sans: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang TC", "Noto Sans TC", Arial, sans-serif;
  --mono: ui-monospace, "SFMono-Regular", "Cascadia Code", Menlo, Consolas, monospace;
  --text-xs: clamp(0.75rem, 0.72rem + 0.12vw, 0.82rem);
  --text-sm: clamp(0.875rem, 0.83rem + 0.18vw, 0.98rem);
  --text-base: clamp(1rem, 0.95rem + 0.22vw, 1.125rem);
  --text-lg: clamp(1.15rem, 1.04rem + 0.45vw, 1.4rem);
  --text-xl: clamp(1.4rem, 1.15rem + 1vw, 2rem);
  --text-2xl: clamp(2rem, 1.35rem + 2.5vw, 3.7rem);
  --text-display: clamp(4.1rem, 1.7rem + 11vw, 12rem);
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: var(--text-base);
  line-height: 1.55;
  text-rendering: optimizeLegibility;
}

a {
  color: inherit;
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.18em;
}

a:hover {
  color: var(--red);
}

button,
input {
  font: inherit;
}

::selection {
  color: var(--white);
  background: var(--blue);
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  padding: 10px 14px;
  color: var(--white);
  background: var(--ink);
  transform: translateY(-160%);
}

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

.shell {
  width: min(100%, var(--max));
  margin-inline: auto;
  padding-inline: clamp(16px, 3vw, 44px);
}

.signal-header {
  position: relative;
  z-index: 20;
  color: var(--white);
  background: var(--blue);
}

.header-line {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-block: 8px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.45);
  font-family: var(--mono);
  font-size: var(--text-xs);
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.header-main {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: end;
  padding-block: 22px 18px;
}

.wordmark {
  color: var(--white);
  font-size: clamp(2.2rem, 5vw, 5.3rem);
  font-weight: 950;
  line-height: 0.82;
  letter-spacing: -0.075em;
  text-decoration: none;
  text-transform: uppercase;
}

.wordmark:hover {
  color: var(--yellow);
}

.wordmark sup {
  margin-left: 0.15em;
  color: var(--yellow);
  font-family: var(--mono);
  font-size: 0.2em;
  letter-spacing: 0;
  vertical-align: top;
}

.header-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px 24px;
}

.header-nav a {
  color: var(--white);
  font-family: var(--mono);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-decoration: none;
  text-transform: uppercase;
}

.header-nav a:hover,
.header-nav a[aria-current="page"] {
  color: var(--yellow);
}

.hero {
  position: relative;
  min-height: min(760px, 88vh);
  padding-block: clamp(44px, 8vw, 108px) 42px;
  overflow: hidden;
  border-bottom: 1px solid var(--ink);
}

.hero::after {
  position: absolute;
  right: clamp(16px, 4vw, 64px);
  bottom: 34px;
  width: clamp(84px, 14vw, 180px);
  aspect-ratio: 1;
  content: "";
  border: clamp(12px, 2vw, 28px) solid var(--red);
  border-radius: 50%;
}

.hero-index {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 20px;
  color: var(--blue-dark);
  font-family: var(--mono);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.hero h1 {
  position: relative;
  z-index: 1;
  max-width: 12ch;
  margin: 0;
  color: var(--blue);
  font-size: var(--text-display);
  font-weight: 950;
  line-height: 0.72;
  letter-spacing: -0.09em;
  text-transform: uppercase;
  text-wrap: balance;
}

.hero h1 span {
  display: block;
  margin-left: clamp(0px, 8vw, 130px);
  color: var(--ink);
  font-size: 0.54em;
  letter-spacing: -0.065em;
}

.hero-deck {
  position: relative;
  z-index: 1;
  max-width: 60ch;
  margin: clamp(32px, 5vw, 72px) 0 0 clamp(0px, 18vw, 260px);
  font-size: var(--text-lg);
  line-height: 1.55;
}

.hero-deck strong {
  color: var(--blue);
  font-weight: 800;
}

.hero-source {
  max-width: 70ch;
  margin: 22px 0 0 clamp(0px, 18vw, 260px);
  color: var(--muted);
  font-family: var(--mono);
  font-size: var(--text-xs);
}

.signal-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-bottom: 1px solid var(--ink);
}

.signal-metric {
  min-width: 0;
  padding: clamp(20px, 3vw, 38px) clamp(14px, 2.3vw, 32px);
  border-right: 1px solid var(--ink);
}

.signal-metric:last-child {
  border-right: 0;
}

.signal-metric b {
  display: block;
  color: var(--blue);
  font-family: var(--mono);
  font-size: clamp(2rem, 4.5vw, 5rem);
  font-weight: 500;
  line-height: 0.92;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.065em;
}

.signal-metric span {
  display: block;
  max-width: 26ch;
  margin-top: 12px;
  color: var(--muted);
  font-size: var(--text-xs);
}

.section {
  padding-block: clamp(64px, 9vw, 128px);
  border-bottom: 1px solid var(--ink);
}

.section-label {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr);
  gap: 28px;
  align-items: start;
  margin-bottom: clamp(36px, 6vw, 72px);
}

.section-label .section-no {
  padding-top: 0.65em;
  color: var(--red);
  font-family: var(--mono);
  font-size: var(--text-sm);
  font-weight: 800;
}

.section-label h2 {
  max-width: 18ch;
  margin: 0;
  font-size: clamp(2.6rem, 6.8vw, 7.2rem);
  font-weight: 900;
  line-height: 0.88;
  letter-spacing: -0.07em;
  text-transform: uppercase;
  text-wrap: balance;
}

.section-label p {
  max-width: 62ch;
  margin: 20px 0 0;
  color: var(--muted);
}

.rank-controls {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) auto;
  gap: 18px;
  padding-block: 15px;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}

.rank-search {
  width: 100%;
  min-height: 44px;
  padding: 0;
  color: var(--ink);
  background: transparent;
  border: 0;
  border-bottom: 2px solid var(--ink);
  border-radius: 0;
  outline: none;
  font-family: var(--mono);
  font-size: var(--text-sm);
}

.rank-search:focus {
  border-color: var(--blue);
  box-shadow: 0 3px 0 var(--yellow);
}

.control-groups {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.control-button {
  min-height: 40px;
  padding: 0 11px;
  color: var(--ink);
  background: transparent;
  border: 1px solid var(--ink);
  cursor: pointer;
  font-family: var(--mono);
  font-size: var(--text-xs);
  font-weight: 700;
}

.control-button:hover,
.control-button.is-active {
  color: var(--white);
  background: var(--blue);
  border-color: var(--blue);
}

.results-line {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-block: 12px;
  color: var(--muted);
  font-family: var(--mono);
  font-size: var(--text-xs);
}

.repo-list {
  margin: 0;
  padding: 0;
  list-style: none;
  border-bottom: 1px solid var(--ink);
}

.repo-row {
  display: grid;
  grid-template-columns: 74px minmax(230px, 1.2fr) minmax(220px, 0.95fr) minmax(150px, 0.58fr);
  gap: clamp(14px, 2.4vw, 36px);
  min-height: 210px;
  padding-block: clamp(24px, 3vw, 40px);
  border-top: 1px solid var(--ink);
  transition: color 150ms ease, background-color 150ms ease;
}

.repo-row[hidden] {
  display: none;
}

.repo-row:hover {
  color: var(--white);
  background: var(--blue);
}

.repo-row:hover .repo-summary,
.repo-row:hover .repo-meta,
.repo-row:hover .repo-daily-label,
.repo-row:hover .repo-comment {
  color: rgba(255, 255, 255, 0.82);
}

.repo-row:hover .velocity-track {
  background: rgba(255, 255, 255, 0.25);
}

.repo-row:hover .velocity-fill {
  background: var(--yellow);
}

.repo-row:hover a {
  color: var(--white);
}

.repo-rank {
  color: var(--red);
  font-family: var(--mono);
  font-size: var(--text-xl);
  font-variant-numeric: tabular-nums;
}

.repo-row:hover .repo-rank {
  color: var(--yellow);
}

.repo-name {
  margin: 0;
  font-size: clamp(1.55rem, 2.7vw, 3.2rem);
  font-weight: 850;
  line-height: 0.98;
  letter-spacing: -0.045em;
  overflow-wrap: anywhere;
}

.repo-name a {
  text-decoration: none;
}

.repo-name a:hover {
  text-decoration: underline;
}

.repo-owner {
  display: block;
  margin-bottom: 6px;
  color: var(--muted);
  font-family: var(--mono);
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: 0;
}

.repo-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 7px 14px;
  margin-top: 20px;
  color: var(--muted);
  font-family: var(--mono);
  font-size: var(--text-xs);
}

.language-dot {
  display: inline-block;
  width: 0.72em;
  aspect-ratio: 1;
  margin-right: 0.45em;
  background: var(--red);
  border-radius: 50%;
}

.repo-copy {
  display: flex;
  flex-direction: column;
}

.repo-summary {
  max-width: 48ch;
  margin: 0;
  color: #3e4668;
  font-size: var(--text-sm);
  line-height: 1.55;
}

.repo-comment {
  max-width: 48ch;
  margin: auto 0 0;
  padding-top: 20px;
  color: var(--ink);
  font-size: var(--text-xs);
  font-weight: 750;
}

.repo-daily {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  text-align: right;
}

.repo-daily strong {
  display: block;
  color: var(--blue);
  font-family: var(--mono);
  font-size: clamp(2.2rem, 4vw, 4.8rem);
  font-weight: 500;
  line-height: 0.9;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.07em;
}

.repo-row:hover .repo-daily strong {
  color: var(--yellow);
}

.repo-daily-label {
  margin-top: 8px;
  color: var(--muted);
  font-family: var(--mono);
  font-size: var(--text-xs);
}

.velocity-track {
  width: 100%;
  height: 7px;
  margin-top: auto;
  background: var(--paper-2);
}

.velocity-fill {
  width: 0;
  height: 100%;
  background: var(--red);
}

.velocity-1 { width: 1%; }
.velocity-6 { width: 5.9%; }
.velocity-7 { width: 6.7%; }
.velocity-16 { width: 16%; }
.velocity-18 { width: 18.1%; }
.velocity-23 { width: 23%; }
.velocity-34 { width: 33.8%; }
.velocity-43 { width: 42.8%; }
.velocity-44 { width: 44%; }
.velocity-52 { width: 51.8%; }
.velocity-59 { width: 59.2%; }
.velocity-70 { width: 69.7%; }
.velocity-100 { width: 100%; }

.empty-state {
  display: none;
  padding: 54px 0;
  color: var(--muted);
  font-size: var(--text-lg);
  text-align: center;
  border-bottom: 1px solid var(--ink);
}

.empty-state.is-visible {
  display: block;
}

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

.cluster {
  min-height: 330px;
  padding: clamp(26px, 4vw, 54px);
  border-right: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}

.cluster:nth-child(2) {
  color: var(--white);
  background: var(--blue);
}

.cluster:nth-child(3) {
  background: var(--mint);
}

.cluster:nth-child(4) {
  background: var(--yellow);
}

.cluster-id {
  font-family: var(--mono);
  font-size: var(--text-xs);
}

.cluster h3 {
  max-width: 17ch;
  margin: 54px 0 0;
  font-size: var(--text-2xl);
  font-weight: 850;
  line-height: 0.98;
  letter-spacing: -0.055em;
  text-wrap: balance;
}

.cluster p {
  max-width: 52ch;
  margin: 24px 0 0;
  font-size: var(--text-sm);
}

.cluster a {
  display: inline-block;
  margin-top: 22px;
  font-family: var(--mono);
  font-size: var(--text-xs);
  font-weight: 800;
  text-transform: uppercase;
}

.poster-quote {
  padding-block: clamp(68px, 11vw, 150px);
  color: var(--white);
  background: var(--red);
}

.poster-quote blockquote {
  max-width: 22ch;
  margin: 0;
  font-size: clamp(2.8rem, 7.4vw, 8.3rem);
  font-weight: 900;
  line-height: 0.88;
  letter-spacing: -0.075em;
  text-wrap: balance;
}

.poster-quote cite {
  display: block;
  margin-top: 34px;
  font-family: var(--mono);
  font-size: var(--text-xs);
  font-style: normal;
}

.method-band {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(30px, 7vw, 100px);
  align-items: start;
}

.method-band h2 {
  margin: 0;
  font-size: clamp(2.5rem, 5vw, 5.6rem);
  font-weight: 900;
  line-height: 0.9;
  letter-spacing: -0.06em;
  text-wrap: balance;
}

.method-copy {
  max-width: 65ch;
}

.method-copy p {
  margin: 0 0 1.2em;
}

.method-copy a {
  color: var(--blue-dark);
  font-weight: 700;
}

.ad-boundary {
  min-height: 1px;
}

.site-footer {
  color: var(--white);
  background: var(--ink);
}

.footer-main {
  display: grid;
  grid-template-columns: 1.35fr 0.65fr;
  gap: 48px;
  padding-block: clamp(56px, 8vw, 100px);
}

.footer-title {
  margin: 0;
  font-size: clamp(3rem, 8vw, 9rem);
  font-weight: 950;
  line-height: 0.75;
  letter-spacing: -0.08em;
  text-transform: uppercase;
}

.footer-title span {
  color: var(--red);
}

.footer-deck {
  max-width: 58ch;
  margin: 32px 0 0;
  color: #aeb5d0;
  font-size: var(--text-sm);
}

.footer-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 11px 26px;
  align-content: start;
}

.footer-links a {
  color: var(--white);
  font-family: var(--mono);
  font-size: var(--text-xs);
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--yellow);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-block: 16px;
  color: #77809e;
  border-top: 1px solid #353b58;
  font-family: var(--mono);
  font-size: var(--text-xs);
}

/* Long-form analysis */
.article-hero {
  position: relative;
  min-height: 650px;
  padding-block: clamp(58px, 9vw, 124px) 52px;
  overflow: hidden;
  border-bottom: 1px solid var(--ink);
}

.article-hero .issue-no {
  position: absolute;
  right: 0;
  bottom: -0.23em;
  z-index: -1;
  color: var(--paper-2);
  font-family: var(--mono);
  font-size: clamp(13rem, 32vw, 32rem);
  font-weight: 700;
  line-height: 0.75;
  letter-spacing: -0.1em;
}

.article-kicker {
  margin: 0 0 24px;
  color: var(--red);
  font-family: var(--mono);
  font-size: var(--text-xs);
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.article-hero h1 {
  max-width: 14ch;
  margin: 0;
  font-size: clamp(3.1rem, 8vw, 8.8rem);
  font-weight: 950;
  line-height: 0.86;
  letter-spacing: -0.075em;
  text-wrap: balance;
}

.article-deck {
  max-width: 60ch;
  margin: 38px 0 0 clamp(0px, 12vw, 170px);
  color: #38405f;
  font-size: var(--text-lg);
  line-height: 1.55;
}

.article-data {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 28px;
  margin: 30px 0 0 clamp(0px, 12vw, 170px);
  color: var(--muted);
  font-family: var(--mono);
  font-size: var(--text-xs);
}

.article-layout {
  display: grid;
  grid-template-columns: 180px minmax(0, 720px) minmax(170px, 1fr);
  gap: clamp(30px, 5vw, 76px);
  padding-block: clamp(64px, 9vw, 128px);
}

.article-toc {
  position: sticky;
  top: 24px;
  align-self: start;
}

.article-toc strong {
  display: block;
  margin-bottom: 12px;
  font-family: var(--mono);
  font-size: var(--text-xs);
  text-transform: uppercase;
}

.article-toc ol {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--ink);
}

.article-toc li {
  border-bottom: 1px solid var(--line);
}

.article-toc a {
  display: block;
  padding: 10px 0;
  color: var(--muted);
  font-size: var(--text-xs);
  font-weight: 650;
  line-height: 1.4;
  text-decoration: none;
}

.article-toc a:hover {
  color: var(--blue);
}

.prose {
  max-width: 65ch;
  min-width: 0;
  font-size: clamp(1.0625rem, 1.01rem + 0.22vw, 1.1875rem);
  line-height: 1.68;
}

.prose > :first-child {
  margin-top: 0;
}

.prose p {
  margin: 0 0 1.45em;
}

.prose .lead {
  color: var(--blue-dark);
  font-size: 1.25em;
  font-weight: 650;
  line-height: 1.5;
}

.prose h2 {
  margin: 2em 0 0.55em;
  font-size: clamp(1.8rem, 2.7vw, 2.9rem);
  font-weight: 850;
  line-height: 1.02;
  letter-spacing: -0.045em;
  text-wrap: balance;
}

.prose h3 {
  margin: 1.8em 0 0.55em;
  font-size: var(--text-xl);
  line-height: 1.12;
  letter-spacing: -0.025em;
}

.prose ul,
.prose ol {
  margin: 0 0 1.5em;
  padding-left: 1.25em;
}

.prose li {
  margin-bottom: 0.55em;
}

.prose a {
  color: var(--blue-dark);
}

.prose code {
  padding: 0.1em 0.28em;
  background: var(--paper-2);
  font-family: var(--mono);
  font-size: 0.84em;
}

.prose blockquote {
  margin: 2em 0;
  padding: 26px 0 26px clamp(22px, 4vw, 48px);
  color: var(--white);
  background: var(--blue);
  border-left: 10px solid var(--red);
  font-size: 1.35em;
  font-weight: 750;
  line-height: 1.32;
}

.data-figure {
  margin: 2.2em 0;
  padding: clamp(20px, 4vw, 34px);
  background: var(--white);
  border: 1px solid var(--ink);
  font-family: var(--mono);
}

.data-figure figcaption {
  margin-bottom: 20px;
  font-size: var(--text-xs);
  font-weight: 800;
  text-transform: uppercase;
}

.figure-row {
  display: grid;
  grid-template-columns: minmax(100px, 0.8fr) minmax(100px, 1.5fr) auto;
  gap: 12px;
  align-items: center;
  padding-block: 9px;
  border-top: 1px solid var(--line);
  font-size: var(--text-xs);
}

.figure-bar {
  height: 9px;
  background: var(--paper-2);
}

.figure-bar span {
  display: block;
  width: 0;
  height: 100%;
  background: var(--red);
}

.figure-bar .bar-18 { width: 18.1%; }
.figure-bar .bar-52 { width: 51.8%; }
.figure-bar .bar-100 { width: 100%; }

.article-note {
  position: sticky;
  top: 24px;
  align-self: start;
  padding-top: 13px;
  color: var(--muted);
  border-top: 5px solid var(--blue);
  font-size: var(--text-xs);
}

.article-note strong {
  display: block;
  margin-bottom: 10px;
  color: var(--ink);
  font-family: var(--mono);
  text-transform: uppercase;
}

.related {
  padding-block: clamp(60px, 8vw, 104px);
  background: var(--paper-2);
  border-top: 1px solid var(--ink);
}

.related h2 {
  margin: 0 0 28px;
  font-size: var(--text-2xl);
  line-height: 1;
  letter-spacing: -0.05em;
}

.related-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--ink);
}

.related-list li {
  border-right: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}

.related-list li:first-child {
  border-left: 1px solid var(--ink);
}

.related-list a {
  display: flex;
  flex-direction: column;
  min-height: 230px;
  padding: 24px;
  text-decoration: none;
}

.related-list a:hover {
  color: var(--white);
  background: var(--blue);
}

.related-list span {
  font-family: var(--mono);
  font-size: var(--text-xs);
  text-transform: uppercase;
}

.related-list h3 {
  margin: auto 0 0;
  font-size: var(--text-xl);
  line-height: 1.05;
  letter-spacing: -0.035em;
}

@media (max-width: 1020px) {
  .repo-row {
    grid-template-columns: 58px minmax(220px, 1fr) minmax(160px, 0.9fr);
  }

  .repo-daily {
    grid-column: 2 / -1;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 16px;
    align-items: center;
    text-align: left;
  }

  .repo-daily-label {
    display: none;
  }

  .velocity-track {
    margin-top: 0;
  }

  .article-layout {
    grid-template-columns: minmax(0, 1fr) 180px;
  }

  .article-toc {
    display: none;
  }
}

@media (max-width: 760px) {
  body {
    font-size: clamp(1.0625rem, 1rem + 0.28vw, 1.125rem);
  }

  .header-line span:last-child {
    display: none;
  }

  .header-main {
    grid-template-columns: 1fr;
  }

  .header-nav {
    justify-content: flex-start;
  }

  .hero {
    min-height: 620px;
  }

  .hero h1 {
    font-size: clamp(4.2rem, 25vw, 8rem);
  }

  .hero h1 span,
  .hero-deck,
  .hero-source,
  .article-deck,
  .article-data {
    margin-left: 0;
  }

  .hero::after {
    opacity: 0.72;
  }

  .signal-strip {
    grid-template-columns: 1fr 1fr;
  }

  .signal-metric:nth-child(2) {
    border-right: 0;
  }

  .signal-metric:nth-child(-n + 2) {
    border-bottom: 1px solid var(--ink);
  }

  .section-label {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .rank-controls {
    grid-template-columns: 1fr;
  }

  .control-groups {
    justify-content: flex-start;
  }

  .repo-row {
    grid-template-columns: 46px minmax(0, 1fr);
    min-height: 0;
  }

  .repo-copy,
  .repo-daily {
    grid-column: 2;
  }

  .repo-comment {
    margin-top: 20px;
  }

  .repo-daily {
    grid-template-columns: 1fr;
  }

  .repo-daily strong {
    font-size: 2.6rem;
  }

  .cluster-grid,
  .method-band,
  .footer-main,
  .related-list {
    grid-template-columns: 1fr;
  }

  .cluster {
    min-height: 280px;
  }

  .footer-links {
    margin-top: 20px;
  }

  .footer-bottom {
    display: block;
  }

  .footer-bottom span {
    display: block;
    margin-top: 4px;
  }

  .article-hero {
    min-height: 570px;
  }

  .article-layout {
    display: block;
  }

  .article-note {
    position: static;
    margin-top: 50px;
  }

  .related-list li,
  .related-list li:first-child {
    border-left: 1px solid var(--ink);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
  }
}
