/* ================= 首页 · 赛季总览 ================= */
.page-home {
  --home-gutter: clamp(20px, 5vw, 88px);
  --home-rule-dark: rgba(58, 63, 69, 0.55);
  --home-rule-light: rgba(11, 13, 16, 0.14);
  --home-ink-tint: rgba(11, 13, 16, 0.045);
  background: var(--ink);
  color: var(--paper);
  font-family: var(--font-body);
  overflow-x: clip;
}

.page-home .home-wrap {
  width: min(calc(100% - 2 * var(--home-gutter)), var(--maxw));
  margin-inline: auto;
}

/* ---------- 首屏 ---------- */
.page-home .home-hero {
  position: relative;
  isolation: isolate;
  padding: clamp(96px, 11vw, 164px) 0 clamp(72px, 8vw, 104px);
  background:
    radial-gradient(120% 92% at 84% 10%, rgba(122, 16, 32, 0.62) 0%, rgba(11, 13, 16, 0) 62%),
    radial-gradient(90% 80% at 4% 94%, rgba(15, 107, 102, 0.3) 0%, rgba(11, 13, 16, 0) 60%),
    var(--ink);
}

.page-home .home-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background-image:
    linear-gradient(to right, var(--home-rule-dark) 1px, transparent 1px),
    linear-gradient(to bottom, var(--home-rule-dark) 1px, transparent 1px);
  background-size: 92px 92px;
  opacity: 0.34;
}

.page-home .home-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.2;
  background-image:
    radial-gradient(rgba(242, 237, 228, 0.5) 1px, transparent 1.3px),
    radial-gradient(rgba(201, 205, 210, 0.35) 1px, transparent 1.3px);
  background-size: 9px 9px, 13px 13px;
  background-position: 0 0, 4px 6px;
}

.page-home .home-hero__context {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.6em;
  margin: 0 0 clamp(36px, 5vw, 62px);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  color: var(--grey-ink);
}

.page-home .home-hero__context-dot {
  flex: none;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--signal);
  box-shadow: 0 0 0 4px rgba(196, 30, 51, 0.22);
}

.page-home .home-hero__context-sep {
  color: var(--stone);
}

.page-home .home-hero__layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(32px, 5vw, 52px);
}

.page-home .home-hero__title {
  display: flex;
  flex-direction: column;
  gap: 0.1em;
  margin: 0.35em 0 0.7em;
  font-family: var(--font-display);
  font-weight: 900;
  line-height: 1.04;
  letter-spacing: -0.02em;
}

.page-home .home-hero__title-kicker {
  font-size: clamp(1.2rem, 3vw, 1.9rem);
  color: var(--paper);
}

.page-home .home-hero__title-num {
  font-family: var(--font-mono);
  font-variant-numeric: tabular-nums;
  font-size: clamp(2.3rem, 8.4vw, 5.2rem);
  font-weight: 700;
  line-height: 0.98;
  letter-spacing: -0.03em;
  color: var(--amber);
  margin-left: -0.05em;
}

.page-home .home-hero__title-dash {
  color: var(--signal);
}

.page-home .home-hero__title-sub {
  font-size: clamp(1rem, 2.2vw, 1.35rem);
  font-weight: 700;
  color: var(--grey-ink);
  letter-spacing: 0.04em;
}

.page-home .home-hero__lede {
  max-width: 60ch;
  margin: 0;
  font-size: 1rem;
  line-height: 1.78;
  color: var(--grey-ink);
}

.page-home .home-hero__anchors {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px 20px;
  margin-top: 44px;
  padding-top: 26px;
  border-top: 1px solid var(--line-paper);
}

.page-home .home-anchor__value {
  display: flex;
  align-items: baseline;
  gap: 0.12em;
  margin: 0;
  font-family: var(--font-mono);
  font-variant-numeric: tabular-nums;
  font-weight: 700;
  font-size: clamp(2rem, 4.6vw, 3.4rem);
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--cyan);
}

.page-home .home-anchor--amber .home-anchor__value { color: var(--amber); }
.page-home .home-anchor--moss .home-anchor__value { color: var(--moss); }

.page-home .home-anchor__unit {
  font-family: var(--font-body);
  font-size: 0.32em;
  font-weight: 500;
  letter-spacing: 0;
  color: var(--grey-ink);
}

.page-home .home-anchor__label {
  margin: 12px 0 0;
  max-width: 24ch;
  font-size: 0.8125rem;
  line-height: 1.6;
  color: var(--grey-ink);
}

/* 首屏章节索引 */
.page-home .home-hero__rail {
  padding-top: 6px;
}

.page-home .home-rail__title {
  margin: 0 0 16px;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  color: var(--grey-ink);
}

.page-home .home-rail {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 2px;
  border-left: 1px solid var(--line-paper);
}

.page-home .home-rail__link {
  display: flex;
  align-items: baseline;
  gap: 12px;
  padding: 10px 0 10px 14px;
  color: var(--grey-ink);
  text-decoration: none;
  font-size: 0.875rem;
  line-height: 1.5;
  border-left: 2px solid transparent;
  transition: color 180ms var(--ease), border-color 180ms var(--ease);
}

.page-home .home-rail__num {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  color: var(--stone);
}

.page-home .home-rail__link:hover,
.page-home .home-rail__link:focus-visible {
  color: var(--paper);
  border-left-color: var(--signal);
}

.page-home .home-rail__link:hover .home-rail__num,
.page-home .home-rail__link:focus-visible .home-rail__num {
  color: var(--amber);
}

.page-home .home-rail__note {
  margin: 22px 0 0;
  padding-left: 14px;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  line-height: 1.8;
  letter-spacing: 0.12em;
  color: var(--stone);
}

/* 首屏图位 */
.page-home .home-hero__figure {
  position: relative;
  margin: 0;
  border: 1px solid var(--line-paper);
  border-radius: var(--r-organic);
  overflow: hidden;
  background: var(--sub-red);
}

.page-home .home-hero__img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  filter: saturate(0.82) contrast(1.08);
}

.page-home .home-hero__caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 16px;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  color: var(--paper);
  background: linear-gradient(to top, rgba(11, 13, 16, 0.88), rgba(11, 13, 16, 0));
}

/* ---------- 通用分区 ---------- */
.page-home .home-section {
  position: relative;
  padding: clamp(76px, 9vw, 132px) 0;
}

.page-home .home-section--paper {
  background: var(--paper);
  color: var(--ink);
}

.page-home .home-section--ink {
  background: var(--ink);
  color: var(--paper);
}

.page-home .home-section--deep {
  background:
    radial-gradient(110% 80% at 12% 0%, rgba(196, 30, 51, 0.34) 0%, rgba(74, 10, 20, 0) 60%),
    linear-gradient(180deg, var(--sub-red) 0%, var(--red) 58%, var(--sub-red) 100%);
  color: var(--paper);
}

.page-home .home-section__head {
  max-width: 68ch;
  margin-bottom: clamp(36px, 4.5vw, 62px);
}

.page-home .home-section__title {
  margin: 12px 0 16px;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(1.6rem, 3.8vw, 2.8rem);
  line-height: 1.16;
  letter-spacing: -0.01em;
}

.page-home .home-section__lede {
  margin: 0;
  max-width: 62ch;
  font-size: 0.98rem;
  line-height: 1.78;
}

.page-home .home-section--paper .home-section__lede { color: var(--stone); }
.page-home .home-section--ink .home-section__lede,
.page-home .home-section--deep .home-section__lede { color: var(--grey-ink); }

/* ---------- 业务索引 ---------- */
.page-home .home-backdrop {
  position: relative;
  margin: 0 0 clamp(32px, 4vw, 52px);
  border-radius: var(--r-organic);
  overflow: hidden;
  border: 1px solid var(--home-rule-light);
}

.page-home .home-backdrop img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.page-home .home-backdrop__caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 14px 18px;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  color: var(--paper);
  background: linear-gradient(to top, rgba(11, 13, 16, 0.9), rgba(11, 13, 16, 0));
}

.page-home .biz-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(20px, 2.2vw, 28px);
}

.page-home .biz {
  position: relative;
  padding: clamp(22px, 2.6vw, 34px) clamp(20px, 2.4vw, 34px);
  padding-left: clamp(26px, 3vw, 40px);
  border: 1px solid var(--home-rule-light);
  border-radius: var(--r-organic);
  background: var(--home-ink-tint);
}

.page-home .biz::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  border-radius: var(--r-organic) 0 0 var(--r-organic);
  background: var(--amber);
}

.page-home .biz--sheet { --accent: var(--amber); }
.page-home .biz--window { --accent: var(--terracotta); }
.page-home .biz--split { --accent: var(--moss); }
.page-home .biz--nodes { --accent: var(--deep-cyan); }

.page-home .biz--window::before { background: var(--terracotta); }
.page-home .biz--split::before { background: var(--moss); }
.page-home .biz--nodes::before { background: var(--deep-cyan); }

.page-home .biz__index {
  margin: 0 0 10px;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  color: var(--stone);
}

.page-home .biz__title {
  margin: 0 0 12px;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(1.15rem, 2.2vw, 1.55rem);
  line-height: 1.3;
  color: var(--ink);
}

.page-home .biz__summary {
  margin: 0;
  font-size: 0.925rem;
  line-height: 1.75;
  color: var(--stone);
}

.page-home .biz__media {
  margin: 22px 0 0;
  border-radius: var(--r-organic-sm);
  overflow: hidden;
  border: 1px solid var(--home-rule-light);
}

.page-home .biz__media img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  filter: saturate(0.88) contrast(1.04);
}

.page-home .biz__media--wide img {
  aspect-ratio: 16 / 9;
}

.page-home .biz__link {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  margin-top: 20px;
  padding-bottom: 3px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--red);
  text-decoration: none;
  border-bottom: 1px solid rgba(122, 16, 32, 0.34);
  transition: color 180ms var(--ease), border-color 180ms var(--ease);
}

.page-home .biz__link::after {
  content: "→";
  font-family: var(--font-mono);
}

.page-home .biz__link:hover,
.page-home .biz__link:focus-visible {
  color: var(--signal);
  border-bottom-color: var(--signal);
}

/* 排名条 */
.page-home .rank-list {
  list-style: none;
  margin: 24px 0 0;
  padding: 0;
  display: grid;
  gap: 8px;
}

.page-home .rank-list__row {
  position: relative;
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  padding: 13px 14px 15px;
  border-radius: var(--r-organic-sm);
  background: rgba(11, 13, 16, 0.055);
}

.page-home .rank-list__row::after {
  content: "";
  position: absolute;
  left: 14px;
  bottom: 7px;
  height: 2px;
  width: var(--bar, 100%);
  max-width: calc(100% - 28px);
  border-radius: 2px;
  background: var(--accent, var(--amber));
  opacity: 0.6;
}

.page-home .rank-list__num {
  font-family: var(--font-mono);
  font-variant-numeric: tabular-nums;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  color: var(--stone);
}

.page-home .rank-list__label {
  font-size: 0.9rem;
  color: var(--ink);
}

.page-home .rank-list__meta {
  font-family: var(--font-mono);
  font-variant-numeric: tabular-nums;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  color: var(--deep-cyan);
  white-space: nowrap;
}

/* 窗口期进度 */
.page-home .win-track {
  margin-top: 22px;
}

.page-home .win-track__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
}

.page-home .win-track__label {
  font-size: 0.8rem;
  letter-spacing: 0.04em;
  color: var(--stone);
}

.page-home .win-track__value {
  font-family: var(--font-mono);
  font-variant-numeric: tabular-nums;
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--terracotta);
}

.page-home .win-track__rail {
  position: relative;
  height: 8px;
  border-radius: 4px;
  background: rgba(11, 13, 16, 0.12);
  overflow: hidden;
}

.page-home .win-track__fill {
  display: block;
  width: var(--fill, 0%);
  height: 100%;
  border-radius: 4px;
  background: linear-gradient(90deg, var(--amber), var(--terracotta));
}

.page-home .win-track__meta {
  margin: 10px 0 0;
  font-size: 0.78rem;
  line-height: 1.6;
  color: var(--stone);
}

/* 主客拆分条 */
.page-home .split-bar {
  margin-top: 24px;
}

.page-home .split-bar__rail {
  display: flex;
  gap: 4px;
  height: 42px;
  border-radius: var(--r-organic-sm);
  overflow: hidden;
}

.page-home .split-bar__seg {
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  color: var(--paper);
}

.page-home .split-bar__seg--home {
  flex: 1 1 52%;
  background: var(--moss);
}

.page-home .split-bar__seg--away {
  flex: 1 1 48%;
  background: var(--deep-cyan);
}

.page-home .split-legend {
  list-style: none;
  margin: 16px 0 0;
  padding: 0;
  display: grid;
  gap: 8px;
}

.page-home .split-legend__item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.82rem;
  line-height: 1.65;
  color: var(--stone);
}

.page-home .split-legend__dot {
  flex: none;
  width: 9px;
  height: 9px;
  margin-top: 8px;
  border-radius: 2px;
}

.page-home .split-legend__dot--home { background: var(--moss); }
.page-home .split-legend__dot--away { background: var(--deep-cyan); }

/* 集锦节点轴 */
.page-home .node-axis {
  position: relative;
  list-style: none;
  margin: 26px 0 0;
  padding: 0 0 0 4px;
  display: flex;
  flex-wrap: wrap;
  gap: 18px 0;
}

.page-home .node-axis::before {
  content: "";
  position: absolute;
  left: 8px;
  right: 8px;
  top: 5px;
  height: 1px;
  background: var(--home-rule-light);
}

.page-home .node-axis__item {
  position: relative;
  flex: 1 1 33.333%;
  min-width: 96px;
  padding: 20px 12px 0 0;
}

.page-home .node-axis__dot {
  position: absolute;
  left: 4px;
  top: 1px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--deep-cyan);
  box-shadow: 0 0 0 3px rgba(15, 107, 102, 0.18);
}

.page-home .node-axis__label {
  display: block;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  color: var(--ink);
}

/* 折叠口径 */
.page-home .accordion {
  margin-top: 22px;
  border-top: 1px solid var(--home-rule-light);
}

.page-home .accordion__item {
  border-bottom: 1px solid var(--home-rule-light);
}

.page-home .accordion__trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  width: 100%;
  padding: 13px 0;
  background: none;
  border: 0;
  font-family: var(--font-body);
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  color: var(--stone);
  text-align: left;
  cursor: pointer;
}

.page-home .accordion__trigger:hover,
.page-home .accordion__trigger:focus-visible {
  color: var(--ink);
}

.page-home .accordion__trigger:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 3px;
}

.page-home .accordion__icon {
  font-family: var(--font-mono);
  font-size: 1rem;
  line-height: 1;
  color: var(--stone);
}

.page-home .icon-minus { display: none; }

.page-home .accordion__trigger[aria-expanded="true"] .icon-plus { display: none; }
.page-home .accordion__trigger[aria-expanded="true"] .icon-minus { display: inline; }

.page-home .accordion__panel {
  padding: 0 0 16px;
  font-size: 0.86rem;
  line-height: 1.78;
  color: var(--stone);
}

.page-home .accordion__panel p {
  margin: 0;
  max-width: 62ch;
}

/* ---------- 核定节奏 ---------- */
.page-home .rhythm {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line-paper);
}

.page-home .rhythm__item {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 8px;
  padding: 26px 0 26px 18px;
  border-bottom: 1px solid var(--line-paper);
}

.page-home .rhythm__item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 34px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--amber);
}

.page-home .rhythm__stamp {
  font-family: var(--font-mono);
  font-variant-numeric: tabular-nums;
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--cyan);
}

.page-home .rhythm__title {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  line-height: 1.4;
}

.page-home .rhythm__text {
  margin: 0;
  max-width: 62ch;
  font-size: 0.9rem;
  line-height: 1.78;
  color: var(--grey-ink);
}

.page-home .method-notes {
  display: grid;
  gap: 20px;
  margin-top: clamp(36px, 4vw, 56px);
}

.page-home .method-note {
  padding: 24px clamp(20px, 2.4vw, 30px);
  border: 1px solid var(--line-paper);
  border-radius: var(--r-organic);
  background: rgba(11, 13, 16, 0.28);
}

.page-home .method-note__label {
  margin: 0 0 10px;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  color: var(--amber);
}

.page-home .method-note__text {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.8;
  color: var(--grey-ink);
}

/* ---------- 勘误 ---------- */
.page-home .errata {
  display: grid;
  gap: clamp(28px, 3.5vw, 52px);
}

.page-home .errata__stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 22px 24px;
  padding-bottom: 26px;
  border-bottom: 1px solid var(--home-rule-light);
}

.page-home .errata__value {
  display: flex;
  align-items: baseline;
  gap: 0.12em;
  margin: 0;
  font-family: var(--font-mono);
  font-variant-numeric: tabular-nums;
  font-weight: 700;
  font-size: clamp(1.9rem, 4.4vw, 3rem);
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--red);
}

.page-home .errata__unit {
  font-family: var(--font-body);
  font-size: 0.32em;
  font-weight: 500;
  letter-spacing: 0;
  color: var(--stone);
}

.page-home .errata__label {
  margin: 12px 0 0;
  font-size: 0.8rem;
  line-height: 1.6;
  color: var(--stone);
}

.page-home .errata__body p {
  margin: 0;
  max-width: 64ch;
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--stone);
}

.page-home .errata__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.page-home .home-footnote {
  margin: clamp(30px, 3.5vw, 48px) 0 0;
  padding-top: 20px;
  border-top: 1px solid var(--home-rule-light);
  font-size: 0.85rem;
  line-height: 1.8;
  color: var(--stone);
}

/* ---------- 服务地区与联系 ---------- */
.page-home .region-grid {
  display: grid;
  gap: 22px;
}

.page-home .region-card {
  padding: clamp(22px, 2.6vw, 32px);
  border: 1px solid var(--line-paper);
  border-radius: var(--r-organic);
  background: rgba(242, 237, 228, 0.03);
}

.page-home .region-card__label {
  margin: 0 0 18px;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  color: var(--amber);
}

.page-home .region-contact {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 14px;
}

.page-home .region-contact li {
  display: grid;
  grid-template-columns: 84px minmax(0, 1fr);
  gap: 14px;
  align-items: baseline;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line-paper);
}

.page-home .region-contact__key {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  color: var(--stone);
}

.page-home .region-contact__val {
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--paper);
  word-break: break-word;
}

.page-home .region-card__note {
  margin: 18px 0 0;
  font-size: 0.82rem;
  line-height: 1.75;
  color: var(--grey-ink);
}

.page-home .region-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 2px;
}

.page-home .region-links a {
  display: block;
  padding: 12px 0;
  font-size: 0.92rem;
  line-height: 1.6;
  color: var(--paper);
  text-decoration: none;
  border-bottom: 1px solid var(--line-paper);
  transition: color 180ms var(--ease), padding-left 180ms var(--ease);
}

.page-home .region-links a:hover,
.page-home .region-links a:focus-visible {
  color: var(--cyan);
  padding-left: 6px;
}

/* ---------- 响应式 ---------- */
@media (min-width: 640px) {
  .page-home .home-hero__anchors {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .page-home .region-grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  }

  .page-home .method-notes {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  }

  .page-home .rhythm__item {
    grid-template-columns: 140px minmax(0, 1fr);
    gap: 10px 24px;
    padding-left: 22px;
    align-items: baseline;
  }

  .page-home .rhythm__stamp { grid-row: span 2; }
}

@media (min-width: 1024px) {
  .page-home .home-hero__layout {
    grid-template-columns: minmax(150px, 0.82fr) minmax(0, 3.1fr) minmax(230px, 1.5fr);
    gap: clamp(28px, 2.6vw, 56px);
    align-items: start;
  }

  .page-home .home-hero__rail {
    grid-column: 1;
    grid-row: 1;
    position: sticky;
    top: 108px;
  }

  .page-home .home-hero__main {
    grid-column: 2;
    grid-row: 1;
  }

  .page-home .home-hero__figure {
    grid-column: 3;
    grid-row: 1;
  }

  .page-home .home-hero__anchors {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    margin-left: -14px;
  }

  .page-home .biz-grid {
    grid-template-columns: repeat(12, minmax(0, 1fr));
  }

  .page-home .biz--sheet { grid-column: 1 / span 7; }
  .page-home .biz--window { grid-column: 8 / span 5; }
  .page-home .biz--split { grid-column: 1 / span 5; }
  .page-home .biz--nodes { grid-column: 6 / span 7; }

  .page-home .errata {
    grid-template-columns: minmax(260px, 0.8fr) minmax(0, 1.6fr);
    align-items: start;
  }

  .page-home .errata__stats {
    grid-template-columns: minmax(0, 1fr);
    border-bottom: 0;
    border-right: 1px solid var(--home-rule-light);
    padding: 0 34px 0 0;
  }
}

@media (min-width: 1280px) {
  .page-home .home-hero__title-num {
    margin-left: -0.09em;
  }

  .page-home .home-anchor__value {
    margin-left: -0.02em;
  }
}

@media (prefers-reduced-motion: reduce) {
  .page-home .home-rail__link,
  .page-home .biz__link,
  .page-home .region-links a,
  .page-home .accordion__icon {
    transition: none;
  }
}

.page-home {
  --bar: 1rem;
  --fill: currentColor;
}
