.page-home {
  --home-cut: 16px;
  --home-cut-lg: 22px;
  --home-track: 55px;
  background-color: var(--sand-050);
  color: var(--ink-900);
  overflow-x: hidden;
}

/* ---------- 上下文提示条 ---------- */
.page-home .home-ctx {
  padding-top: clamp(14px, 2vw, 22px);
}

.page-home .home-ctx__text {
  margin: 0;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: .05em;
  color: var(--clay-700);
  border-bottom: 1px solid var(--hair);
  padding-bottom: 12px;
}

/* ---------- 首屏 ---------- */
.page-home .hero {
  position: relative;
  padding-block: clamp(28px, 4vw, 56px) clamp(36px, 6vw, 80px);
  background:
    radial-gradient(120% 90% at 88% 0%, rgba(176, 115, 39, .20), transparent 62%),
    var(--sand-050);
}

.page-home .hero__grid {
  display: grid;
  gap: clamp(32px, 4vw, 56px);
  align-items: start;
}

.page-home .hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: .08em;
  color: var(--clay-700);
}

.page-home .hero__eyebrow::before {
  content: "";
  width: 30px;
  height: 2px;
  background: var(--ember-600);
}

.page-home .hero__title {
  margin: 16px 0 0;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(34px, 6vw, 72px);
  line-height: 1.04;
  letter-spacing: -.02em;
  color: var(--ink-900);
}

.page-home .ruler {
  display: flex;
  align-items: flex-end;
  gap: clamp(6px, 1.6vw, 16px);
  margin-top: clamp(22px, 3vw, 36px);
  padding-bottom: 8px;
  border-bottom: 2px solid var(--ink-900);
}

.page-home .ruler__tick {
  position: relative;
  padding-top: 16px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: .04em;
  color: var(--ash-500);
}

.page-home .ruler__tick::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 1px;
  height: 10px;
  background: var(--clay-700);
}

.page-home .ruler__tick.is-now {
  font-size: 22px;
  font-weight: 700;
  color: var(--ember-700);
}

.page-home .ruler__tick.is-now::before {
  width: 2px;
  height: 17px;
  background: var(--ember-600);
}

.page-home .hero__lede {
  max-width: 48ch;
  margin: clamp(20px, 3vw, 30px) 0 0;
  font-size: clamp(15px, 1.5vw, 17px);
  line-height: 1.85;
  color: var(--ink-900);
}

.page-home .hero__meta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: clamp(20px, 3vw, 30px);
  padding-top: 18px;
  border-top: 1px solid var(--hair);
}

.page-home .timer-ring {
  flex: 0 0 auto;
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background: conic-gradient(var(--ember-600) 0 62%, var(--sand-100) 62% 100%);
  display: grid;
  place-items: center;
}

.page-home .timer-ring::after {
  content: "90′";
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--sand-050);
  display: grid;
  place-items: center;
  font-family: var(--font-mono);
  font-size: 17px;
  color: var(--ink-900);
}

.page-home .hero__metatext {
  margin: 0;
  max-width: 40ch;
  font-size: 14px;
  line-height: 1.75;
  color: var(--ash-500);
}

/* 入径面板堆叠 */
.page-home .hero__paths-label {
  margin: 0 0 12px;
  color: var(--clay-700);
}

.page-home .paths {
  display: grid;
}

.page-home .path {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: baseline;
  gap: 14px;
  padding: 18px 22px 18px 26px;
  background: var(--sand-100);
  color: var(--ink-900);
  text-decoration: none;
  clip-path: polygon(0 0, calc(100% - var(--home-cut)) 0, 100% var(--home-cut), 100% 100%, 0 100%);
  transition: background-color 180ms ease, transform 180ms ease;
}

.page-home .path::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: var(--ochre-500);
  transition: background-color 180ms ease;
}

.page-home .path + .path {
  margin-top: -14px;
}

.page-home .path:nth-child(2) { margin-left: 8px; }
.page-home .path:nth-child(3) { margin-left: 16px; }
.page-home .path:nth-child(4) { margin-left: 24px; }

.page-home .path:hover,
.page-home .path:focus-visible {
  background: var(--white);
  transform: translateY(-2px);
}

.page-home .path:hover::before,
.page-home .path:focus-visible::before {
  background: var(--ember-600);
}

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

.page-home .path__no {
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: .04em;
  color: var(--clay-700);
}

.page-home .path__name {
  display: block;
  font-size: clamp(17px, 1.9vw, 21px);
  font-weight: 700;
  letter-spacing: -.01em;
}

.page-home .path__desc {
  display: block;
  margin-top: 4px;
  font-size: 13.5px;
  line-height: 1.65;
  color: var(--ash-500);
}

.page-home .path__go {
  font-family: var(--font-mono);
  font-size: 16px;
  color: var(--clay-700);
  transition: color 180ms ease;
}

.page-home .path:hover .path__go {
  color: var(--ember-700);
}

/* 首屏横幅 */
.page-home .hero__banner {
  margin: clamp(32px, 5vw, 60px) 0 0;
  position: relative;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 28px), calc(100% - 28px) 100%, 0 100%);
  background: var(--pitch-900);
}

.page-home .hero__banner img {
  display: block;
  width: 100%;
  height: clamp(180px, 30vw, 360px);
  object-fit: cover;
  filter: saturate(.95) contrast(1.06);
}

.page-home .hero__banner figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 14px clamp(16px, 3vw, 28px);
  font-size: 12.5px;
  line-height: 1.6;
  color: var(--sand-050);
  background: linear-gradient(transparent, rgba(14, 42, 34, .88));
}

/* ---------- 通用区块 ---------- */
.page-home .section {
  padding-block: clamp(48px, 7vw, 96px);
}

.page-home .sec-head {
  max-width: 68ch;
  margin-bottom: clamp(26px, 3.5vw, 44px);
}

.page-home .section-kicker {
  margin: 0 0 10px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: .1em;
  color: var(--clay-700);
}

.page-home .section-title {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(26px, 3.6vw, 42px);
  line-height: 1.14;
  letter-spacing: -.015em;
  color: var(--ink-900);
}

.page-home .sec-head__lede {
  margin: 16px 0 0;
  font-size: 16px;
  line-height: 1.85;
  color: var(--ash-500);
}

/* ---------- 本轮刻度 ---------- */
.page-home .fixtures-layout {
  display: grid;
  gap: clamp(26px, 3vw, 40px);
}

.page-home .roundswitch {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px 10px;
}

.page-home .roundswitch__radio {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.page-home .roundswitch__tab {
  cursor: pointer;
  user-select: none;
  padding: 8px 16px;
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: .04em;
  color: var(--clay-700);
  background: var(--sand-100);
  clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 0 100%);
  transition: background-color 160ms ease, color 160ms ease;
}

.page-home .roundswitch__radio:checked + .roundswitch__tab {
  background: var(--ink-900);
  color: var(--sand-050);
}

.page-home .roundswitch__radio:focus-visible + .roundswitch__tab {
  outline: 2px solid var(--cyan-400);
  outline-offset: 2px;
}

.page-home .fixtures {
  display: none;
  flex-basis: 100%;
  width: 100%;
  margin: 0;
  padding: 0;
  list-style: none;
}

.page-home #round-27:checked ~ .fixtures--27,
.page-home #round-28:checked ~ .fixtures--28,
.page-home #round-29:checked ~ .fixtures--29 {
  display: block;
  margin-top: 6px;
}

.page-home .fixture {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 14px;
  padding: 15px 4px 15px 12px;
  border-bottom: 1px solid var(--hair);
  border-left: 2px solid transparent;
  transition: border-color 160ms ease, background-color 160ms ease;
}

.page-home .fixture:hover {
  border-left-color: var(--ember-600);
  background: rgba(176, 115, 39, .07);
}

.page-home .fixture__round {
  min-width: 68px;
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: .04em;
  color: var(--clay-700);
}

.page-home .fixture__meta {
  margin-left: auto;
  font-family: var(--font-mono);
  font-size: 12.5px;
  letter-spacing: .04em;
  color: var(--ash-500);
}

.page-home .fixtures-aside {
  padding-top: 6px;
  border-top: 2px solid var(--ink-900);
}

.page-home .fixtures-aside .label {
  color: var(--clay-700);
  margin: 0 0 12px;
}

.page-home .rhythm {
  margin: 0 0 14px;
  font-size: 15px;
  line-height: 1.8;
  color: var(--ink-900);
}

.page-home .rhythm--dim {
  font-size: 13.5px;
  color: var(--ash-500);
}

/* ---------- 阵容快讯 ---------- */
.page-home .brief-sec {
  background: var(--sand-100);
}

.page-home .brief-layout {
  display: grid;
  gap: clamp(28px, 4vw, 48px);
  align-items: start;
}

.page-home .brief-lede {
  max-width: 56ch;
  margin: 16px 0 0;
  font-size: 16px;
  line-height: 1.85;
  color: var(--ash-500);
}

.page-home .briefs {
  margin: clamp(22px, 3vw, 32px) 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0;
}

.page-home .brief {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: start;
  gap: 14px;
  padding: 16px 0;
  border-top: 1px solid var(--hair);
}

.page-home .brief:last-child {
  border-bottom: 1px solid var(--hair);
}

.page-home .brief__text {
  margin: 0;
  font-size: 15px;
  line-height: 1.8;
  color: var(--ink-900);
}

.page-home .brief-main .btn {
  margin-top: clamp(22px, 3vw, 30px);
}

.page-home .brief-figure {
  margin: 0;
  background: var(--pitch-900);
  clip-path: polygon(0 0, calc(100% - var(--home-cut-lg)) 0, 100% var(--home-cut-lg), 100% 100%, 0 100%);
}

.page-home .brief-figure img {
  display: block;
  width: 100%;
  height: auto;
  max-width: 100%;
  object-fit: cover;
  aspect-ratio: 8 / 5;
  filter: saturate(.92) contrast(1.05);
}

.page-home .brief-figure figcaption {
  padding: 14px 18px 18px;
  font-size: 12.5px;
  line-height: 1.65;
  color: rgba(245, 238, 226, .78);
}

/* ---------- 按钮 ---------- */
.page-home .btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.2;
  text-decoration: none;
  clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 0 100%);
  transition: background-color 180ms ease, color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.page-home .btn--ink {
  background: var(--ink-900);
  color: var(--sand-050);
}

.page-home .btn--ink:hover {
  background: var(--ember-700);
  transform: translateY(-2px);
}

.page-home .btn--solid {
  background: var(--ember-600);
  color: var(--white);
}

.page-home .btn--solid:hover {
  background: var(--ember-700);
  transform: translateY(-2px);
}

.page-home .btn--ghost {
  background: transparent;
  color: var(--sand-050);
  box-shadow: inset 0 0 0 1px var(--hair-dark);
}

.page-home .btn--ghost:hover {
  color: var(--cyan-400);
  box-shadow: inset 0 0 0 1px var(--cyan-400);
}

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

/* ---------- 口径三条 ---------- */
.page-home .metrics {
  background: var(--pitch-900);
  color: var(--sand-050);
}

.page-home .sec-head--dark .section-kicker {
  color: var(--cyan-400);
}

.page-home .sec-head--dark .section-title {
  color: var(--white);
}

.page-home .sec-head--dark .sec-head__lede {
  color: rgba(245, 238, 226, .76);
}

.page-home .metrics-layout {
  display: grid;
  gap: clamp(26px, 3.5vw, 44px);
  align-items: start;
}

.page-home .meters {
  display: grid;
  gap: 14px;
}

.page-home .meter {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  gap: 2px 16px;
  align-items: start;
  padding: 20px 20px 20px 18px;
  background: var(--pitch-600);
  clip-path: polygon(0 0, calc(100% - 14px) 0, 100% 14px, 100% 100%, 0 100%);
  transition: box-shadow 180ms ease;
}

.page-home .meter:hover,
.page-home .meter:focus-within {
  box-shadow: inset 0 0 0 1px var(--cyan-400);
}

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

.page-home .meter__no {
  grid-column: 1;
  grid-row: 1 / -1;
  margin: 0;
  font-family: var(--font-mono);
  font-size: 24px;
  line-height: 1;
  letter-spacing: .04em;
  color: var(--ember-600);
}

.page-home .meter__name {
  grid-column: 2;
  margin: 0;
  font-size: clamp(17px, 1.8vw, 20px);
  font-weight: 700;
  color: var(--white);
}

.page-home .meter__desc {
  grid-column: 2;
  margin: 8px 0 0;
  font-size: 15px;
  line-height: 1.8;
  color: rgba(245, 238, 226, .82);
}

.page-home .meter__note {
  grid-column: 2;
  margin: 0;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  font-size: 13px;
  line-height: 1.7;
  color: var(--cyan-400);
  transition: max-height 220ms ease, opacity 220ms ease, margin-top 220ms ease;
}

.page-home .meter:hover .meter__note,
.page-home .meter:focus-within .meter__note {
  max-height: 140px;
  margin-top: 10px;
  opacity: 1;
}

.page-home .metrics-figure {
  margin: 0;
}

.page-home .metrics-figure img {
  display: block;
  width: 100%;
  height: auto;
  max-width: 100%;
  object-fit: cover;
  aspect-ratio: 3 / 2;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 18px), calc(100% - 18px) 100%, 0 100%);
}

.page-home .metrics-figure figcaption {
  margin-top: 12px;
  font-size: 12.5px;
  line-height: 1.65;
  color: rgba(245, 238, 226, .68);
}

/* 折叠说明 */
.page-home .fold {
  margin-top: clamp(24px, 3vw, 36px);
  border-top: 1px solid var(--hair);
  border-bottom: 1px solid var(--hair);
  padding: 16px 0;
}

.page-home .fold--dark {
  border-color: var(--hair-dark);
}

.page-home .fold > summary {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  list-style: none;
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
}

.page-home .fold > summary::-webkit-details-marker {
  display: none;
}

.page-home .fold > summary::before {
  content: "+";
  font-family: var(--font-mono);
  font-size: 18px;
  line-height: 1;
  color: var(--ember-600);
}

.page-home .fold[open] > summary::before {
  content: "–";
}

.page-home .fold__body {
  max-width: 68ch;
  padding-top: 12px;
}

.page-home .fold__body p {
  margin: 0;
  font-size: 15px;
  line-height: 1.85;
  color: rgba(245, 238, 226, .8);
}

.page-home .metrics__link {
  margin: clamp(20px, 2.5vw, 28px) 0 0;
}

.page-home .metrics__link a {
  color: var(--cyan-400);
  text-decoration: none;
  font-size: 15px;
  border-bottom: 1px solid rgba(63, 224, 192, .45);
  padding-bottom: 2px;
  transition: border-color 180ms ease;
}

.page-home .metrics__link a:hover {
  border-bottom-color: var(--cyan-400);
}

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

/* ---------- 十二赛季时间轴 ---------- */
.page-home .timeline-sec {
  background: var(--sand-050);
}

.page-home .tl-band {
  margin: 0 0 clamp(26px, 3.5vw, 40px);
  clip-path: polygon(0 0, 100% 0, 100% 100%, 22px 100%, 0 calc(100% - 22px));
}

.page-home .tl-band img {
  display: block;
  width: 100%;
  height: clamp(110px, 17vw, 210px);
  object-fit: cover;
  filter: saturate(1.02);
}

.page-home .tl {
  position: relative;
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
}

.page-home .tl::before {
  content: "";
  position: absolute;
  left: var(--home-track);
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: linear-gradient(var(--ochre-500), var(--ember-600) 46%, var(--pitch-600));
}

.page-home .tl__item {
  position: relative;
  display: grid;
  grid-template-columns: var(--home-track) minmax(0, 1fr);
  padding: 13px 0;
}

.page-home .tl__year {
  font-family: var(--font-mono);
  font-size: 15px;
  letter-spacing: .04em;
  color: var(--clay-700);
  transition: color 160ms ease;
}

.page-home .tl__dot {
  position: absolute;
  left: var(--home-track);
  top: 21px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--ochre-500);
  transform: translateX(-50%);
  box-shadow: 0 0 0 0 rgba(226, 85, 31, 0);
  transition: box-shadow 200ms ease, background-color 160ms ease;
}

.page-home .tl__item:hover .tl__dot {
  box-shadow: 0 0 0 6px rgba(226, 85, 31, .16);
}

.page-home .tl__body {
  padding-left: 22px;
  display: grid;
  gap: 4px;
}

.page-home .tl__body strong {
  font-size: 15.5px;
  font-weight: 700;
  color: var(--ink-900);
}

.page-home .tl__body span {
  font-size: 14.5px;
  line-height: 1.75;
  color: var(--ash-500);
}

.page-home .tl__item.is-now .tl__year {
  color: var(--ember-700);
  font-weight: 700;
}

.page-home .tl__item.is-now .tl__dot {
  background: var(--ember-600);
  width: 12px;
  height: 12px;
}

.page-home .tl__item.is-now .tl__body strong {
  color: var(--ember-700);
}

/* ---------- 档案规模 ---------- */
.page-home .archive-panel {
  padding: clamp(28px, 4vw, 56px);
  background: var(--pitch-900);
  color: var(--sand-050);
  clip-path: polygon(0 0, calc(100% - var(--home-cut-lg)) 0, 100% var(--home-cut-lg), 100% 100%, var(--home-cut-lg) 100%, 0 calc(100% - var(--home-cut-lg)));
}

.page-home .archive-head .section-kicker {
  color: var(--cyan-400);
}

.page-home .archive-head .section-title {
  color: var(--white);
}

.page-home .archive-lede {
  max-width: 62ch;
  margin: 16px 0 0;
  font-size: 15.5px;
  line-height: 1.85;
  color: rgba(245, 238, 226, .78);
}

.page-home .archive-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px 24px;
  margin: clamp(26px, 3.5vw, 40px) 0 0;
  padding: 0;
}

.page-home .archive-stat {
  padding-top: 14px;
  border-top: 1px solid var(--hair-dark);
}

.page-home .archive-stat dt {
  margin-bottom: 8px;
  font-size: 12px;
  letter-spacing: .08em;
  color: var(--ash-500);
}

.page-home .archive-stat dd {
  margin: 0;
  font-family: var(--font-mono);
  font-size: clamp(24px, 3.2vw, 36px);
  letter-spacing: .02em;
  color: var(--white);
}

.page-home .archive-stat dd small {
  margin-left: .35em;
  font-family: var(--font-body);
  font-size: 13px;
  letter-spacing: 0;
  color: var(--cyan-400);
}

.page-home .archive-note {
  max-width: 70ch;
  margin: clamp(24px, 3vw, 34px) 0 0;
  padding-top: 18px;
  border-top: 1px solid var(--hair-dark);
  font-size: 14.5px;
  line-height: 1.85;
  color: rgba(245, 238, 226, .74);
}

.page-home .archive-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: clamp(22px, 3vw, 30px);
}

/* ---------- 回到顶部 ---------- */
.page-home .to-top {
  position: fixed;
  right: clamp(14px, 2.5vw, 28px);
  bottom: clamp(14px, 2.5vw, 28px);
  z-index: 20;
  display: grid;
  place-items: center;
  text-decoration: none;
}

.page-home .to-top__ring {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--sand-050);
  background:
    radial-gradient(circle at 50% 50%, var(--ink-900) 0 62%, transparent 62%),
    conic-gradient(var(--ember-600) 0 70%, var(--sand-100) 70% 100%);
  box-shadow: 0 6px 18px rgba(28, 26, 22, .28);
  transition: transform 180ms ease, color 180ms ease;
}

.page-home .to-top:hover .to-top__ring {
  transform: translateY(-2px);
  color: var(--cyan-400);
}

.page-home .to-top:focus-visible {
  outline: 2px solid var(--cyan-400);
  outline-offset: 4px;
}

/* ---------- 响应式 ---------- */
@media (min-width: 720px) {
  .page-home .brief-layout {
    grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
  }

  .page-home .fixtures-layout {
    grid-template-columns: minmax(0, 1fr) 300px;
  }

  .page-home .metrics-layout {
    grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
  }

  .page-home .archive-stats {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (min-width: 960px) {
  .page-home .hero__grid {
    grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
    gap: clamp(40px, 5vw, 72px);
  }

  .page-home .hero {
    padding-bottom: clamp(48px, 7vw, 96px);
  }

  .page-home .archive-panel {
    padding-inline: clamp(40px, 5vw, 72px);
  }
}

@media (max-width: 719px) {
  .page-home .path:nth-child(2),
  .page-home .path:nth-child(3),
  .page-home .path:nth-child(4) {
    margin-left: 0;
  }

  .page-home .fixture__meta {
    margin-left: 0;
  }

  .page-home .ruler {
    gap: 6px;
  }

  .page-home .ruler__tick {
    font-size: 11px;
  }

  .page-home .ruler__tick.is-now {
    font-size: 18px;
  }
}

@media (max-width: 899px) {
  .page-home .to-top {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .page-home .path,
  .page-home .btn,
  .page-home .meter,
  .page-home .meter__note,
  .page-home .fixture,
  .page-home .to-top__ring,
  .page-home .tl__dot,
  .page-home .roundswitch__tab {
    transition: none;
  }

  .page-home .path:hover,
  .page-home .path:focus-visible,
  .page-home .btn:hover,
  .page-home .to-top:hover .to-top__ring {
    transform: none;
  }
}
