/* ==========================================================
   页面专属样式：首页（page-home）
   移动端优先，非对称拼贴布局 + 动态积分榜滚动
   ========================================================== */

.page-home {
  --home-grid-line: rgba(168, 180, 200, 0.14);
  --home-card-bg: rgba(11, 26, 50, 0.72);
  --home-edge: rgba(57, 255, 20, 0.65);
  --home-orange-edge: rgba(255, 107, 53, 0.7);
  background: var(--navy);
  color: var(--white);
  overflow-x: hidden;
}

/* ------------------------------------------
   首屏拼贴：注册入口与赛事专区
   ------------------------------------------ */
.page-home .home-hero {
  position: relative;
  padding: 48px 0 64px;
  background:
    radial-gradient(ellipse at 78% 16%, rgba(57, 255, 20, 0.1) 0%, transparent 52%),
    radial-gradient(ellipse at 18% 86%, rgba(255, 107, 53, 0.08) 0%, transparent 44%),
    var(--navy);
  overflow: hidden;
}

.page-home .home-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(var(--home-grid-line) 1px, transparent 1px),
    linear-gradient(90deg, var(--home-grid-line) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.9), transparent 88%);
}

.page-home .home-hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 14px;
  background: linear-gradient(
    104deg,
    transparent 0 30%,
    var(--neon) 30% 44%,
    transparent 44% 66%,
    var(--orange) 66% 100%
  );
  z-index: 3;
  pointer-events: none;
}

.page-home .home-hero__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  z-index: 1;
}

.page-home .home-hero__copy {
  position: relative;
  z-index: 1;
}

.page-home .home-hero__visual {
  position: absolute;
  top: 0;
  right: 0;
  width: 85%;
  height: 100%;
  max-width: 860px;
  object-fit: cover;
  object-position: center;
  border-radius: var(--radius-lg);
  opacity: 0.17;
  z-index: 0;
  pointer-events: none;
}

.page-home .home-hero__crumb {
  position: relative;
  z-index: 1;
  margin-bottom: 28px;
}

.page-home .home-hero__kicker {
  position: relative;
  z-index: 1;
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  letter-spacing: 0.14em;
  color: var(--neon);
  text-transform: uppercase;
  margin-bottom: 14px;
}

.page-home .home-hero__title {
  position: relative;
  z-index: 1;
  font-family: var(--font-display);
  font-size: var(--text-xl);
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
  max-width: 12em;
}

.page-home .home-hero__lead {
  position: relative;
  z-index: 1;
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--gray);
  max-width: 36em;
  margin-bottom: 28px;
}

.page-home .home-hero__actions {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  margin-bottom: 36px;
}

.page-home .home-hero__cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.page-home .home-hero__facts {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 12px 40px;
  margin: 0;
  padding-top: 24px;
  border-top: 1px solid var(--home-grid-line);
}

.page-home .home-hero__fact {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.page-home .home-hero__fact dt {
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.page-home .home-hero__fact dd {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.75rem;
  color: var(--white);
  line-height: 1.1;
}

/* 首屏右侧积分榜面板 */
.page-home .home-hero__board {
  position: relative;
  z-index: 2;
}

.page-home .board-panel {
  background: var(--home-card-bg);
  border: 1px solid var(--navy-edge);
  border-radius: var(--radius-lg);
  padding: 26px 22px 22px;
  box-shadow:
    0 22px 60px rgba(0, 0, 0, 0.34),
    inset 0 0 0 1px rgba(57, 255, 20, 0.04);
  backdrop-filter: blur(10px);
  position: relative;
}

.page-home .board-panel::before {
  content: "";
  position: absolute;
  top: 0;
  left: 24px;
  right: 24px;
  height: 2px;
  background: linear-gradient(90deg, var(--neon), transparent 70%);
  border-radius: 2px;
}

.page-home .board-panel__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 22px;
}

.page-home .board-panel__code {
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  color: var(--gray);
  letter-spacing: 0.1em;
}

.page-home .board-panel__title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  line-height: 1.2;
  margin-bottom: 22px;
}

.page-home .board-panel__rows {
  display: flex;
  flex-direction: column;
}

.page-home .board-row {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 13px 6px;
  border-bottom: 1px solid rgba(168, 180, 200, 0.12);
  transition:
    background-color var(--duration) var(--ease),
    transform var(--duration) var(--ease),
    border-radius var(--duration) var(--ease);
}

.page-home .board-row:last-child {
  border-bottom: 0;
}

.page-home .board-row:hover {
  background: rgba(57, 255, 20, 0.06);
  border-radius: var(--radius-md);
  transform: translateX(4px);
}

.page-home .board-row__rank {
  font-family: var(--font-mono);
  font-size: var(--text-sm);
  color: var(--gray);
  width: 2.2em;
}

.page-home .board-row__team {
  flex: 1;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
}

.page-home .board-row__pts {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--white);
  min-width: 2.2em;
  text-align: right;
}

.page-home .board-row__delta {
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  font-weight: 700;
  padding: 3px 8px;
  border-radius: var(--radius-pill);
  background: rgba(168, 180, 200, 0.14);
  color: var(--gray);
  min-width: 2.6em;
  text-align: center;
}

.page-home .board-row__delta--up {
  background: rgba(57, 255, 20, 0.14);
  color: var(--neon);
}

.page-home .board-row__delta--down {
  background: rgba(255, 107, 53, 0.16);
  color: var(--orange);
}

.page-home .board-row__delta--hold {
  background: rgba(168, 180, 200, 0.12);
  color: var(--gray);
}

.page-home .board-panel__link {
  display: inline-block;
  margin-top: 20px;
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  color: var(--neon);
  text-decoration: none;
  letter-spacing: 0.04em;
  border-bottom: 1px solid rgba(57, 255, 20, 0.32);
  padding-bottom: 4px;
  transition:
    border-color var(--duration) var(--ease),
    color var(--duration) var(--ease);
}

.page-home .board-panel__link:hover {
  border-color: var(--neon);
  color: var(--white);
}

/* ------------------------------------------
   品牌服务索引带
   ------------------------------------------ */
.page-home .home-index {
  background: var(--navy-deep);
  border-top: 1px solid var(--navy-edge);
  border-bottom: 1px solid var(--navy-edge);
  position: relative;
}

.page-home .home-index__list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}

.page-home .home-index__item {
  display: flex;
  align-items: baseline;
  gap: 14px;
  padding: 18px 4px;
  text-decoration: none;
  color: var(--gray);
  border-bottom: 1px solid rgba(168, 180, 200, 0.12);
  transition:
    background-color var(--duration) var(--ease),
    color var(--duration) var(--ease),
    padding-left var(--duration) var(--ease);
}

.page-home .home-index__item:last-child {
  border-bottom: 0;
}

.page-home .home-index__item:hover {
  background: rgba(57, 255, 20, 0.07);
  color: var(--white);
  padding-left: 14px;
}

.page-home .home-index__num {
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  color: var(--neon);
}

.page-home .home-index__label {
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--orange);
  min-width: 3.2em;
}

.page-home .home-index__text {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.4;
  color: inherit;
}

/* ------------------------------------------
   动态积分榜滚动模块
   ------------------------------------------ */
.page-home .home-ticker {
  padding: 72px 0 64px;
  background:
    linear-gradient(180deg, var(--navy), var(--navy-deep));
  position: relative;
}

.page-home .home-ticker__head {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 28px;
}

.page-home .home-ticker__heading {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

.page-home .home-ticker__heading h2,
.page-home .home-features__head h2,
.page-home .home-metrics__heading h2,
.page-home .home-compare__content h2 {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  line-height: 1.2;
  margin: 0;
}

.page-home .home-ticker__head p {
  margin: 0;
  color: var(--gray);
  font-family: var(--font-body);
  font-size: 0.95rem;
  line-height: 1.7;
  max-width: 42em;
}

.page-home .home-ticker__viewport {
  overflow: hidden;
  width: 100%;
  border: 1px solid var(--navy-edge);
  border-radius: var(--radius-md);
  background: rgba(11, 26, 50, 0.5);
  cursor: grab;
}

.page-home .home-ticker__viewport:focus-visible {
  outline: 2px solid var(--neon);
  outline-offset: 2px;
}

.page-home .home-ticker__track {
  display: flex;
  width: max-content;
  animation: pageHomeTickerScroll 34s linear infinite;
}

.page-home .home-ticker__viewport:hover .home-ticker__track,
.page-home .home-ticker__viewport:focus .home-ticker__track,
.page-home .home-ticker__viewport:focus-within .home-ticker__track {
  animation-play-state: paused;
}

.page-home .home-ticker__group {
  display: flex;
  gap: 12px;
  padding: 14px 16px;
  flex-shrink: 0;
}

.page-home .ticker-item {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--navy-edge);
  border-radius: var(--radius-pill);
  padding: 10px 16px;
  white-space: nowrap;
  border: 1px solid rgba(57, 255, 20, 0.12);
  transition:
    border-color var(--duration) var(--ease),
    transform var(--duration) var(--ease),
    background-color var(--duration) var(--ease);
}

.page-home .ticker-item:hover {
  border-color: rgba(57, 255, 20, 0.55);
  transform: translateY(-2px);
  background-color: rgba(27, 50, 96, 0.9);
}

.page-home .ticker-item__pos {
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  color: var(--gray);
}

.page-home .ticker-item__sport {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.9rem;
}

.page-home .ticker-item__name {
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  color: var(--orange);
  border: 1px solid rgba(255, 107, 53, 0.4);
  border-radius: var(--radius-pill);
  padding: 2px 8px;
}

.page-home .ticker-item__pts {
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--white);
}

.page-home .ticker-item__diff {
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  font-weight: 700;
  padding: 2px 8px;
  border-radius: var(--radius-pill);
}

.page-home .ticker-item__diff--up {
  color: var(--neon);
  background: rgba(57, 255, 20, 0.13);
}

.page-home .ticker-item__diff--down {
  color: var(--orange);
  background: rgba(255, 107, 53, 0.15);
}

.page-home .ticker-item__diff--hold {
  color: var(--gray);
  background: rgba(168, 180, 200, 0.12);
}

.page-home .home-ticker__chart {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  margin-top: 28px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--navy-edge);
  object-fit: cover;
}

@keyframes pageHomeTickerScroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* ------------------------------------------
   核心功能导览
   ------------------------------------------ */
.page-home .home-features {
  position: relative;
  padding: 72px 0 84px;
  background: var(--navy);
  overflow: hidden;
}

.page-home .home-features::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--home-grid-line) 1px, transparent 1px),
    linear-gradient(90deg, var(--home-grid-line) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent 78%);
  pointer-events: none;
}

.page-home .home-features__bg {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  max-width: 100%;
  height: 200px;
  object-fit: cover;
  opacity: 0.26;
  z-index: 0;
  border: 0;
  pointer-events: none;
}

.page-home .home-features > .container {
  position: relative;
  z-index: 1;
}

.page-home .home-features__head {
  margin-bottom: 36px;
  max-width: 720px;
}

.page-home .home-features__head .badge {
  margin-bottom: 14px;
}

.page-home .home-features__head h2 {
  margin-bottom: 12px;
}

.page-home .home-features__head p {
  margin: 0;
  color: var(--gray);
  font-size: 0.98rem;
  line-height: 1.7;
}

.page-home .home-features__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

.page-home .feature-card {
  position: relative;
  background: rgba(11, 26, 50, 0.88);
  border: 1px solid var(--navy-edge);
  border-radius: var(--radius-lg);
  padding: 28px 24px 24px;
  display: flex;
  flex-direction: column;
  transition:
    transform var(--duration) var(--ease),
    box-shadow var(--duration) var(--ease),
    border-color var(--duration) var(--ease);
  clip-path: polygon(0 0, calc(100% - 20px) 0, 100% 20px, 100% 100%, 20px 100%, 0 calc(100% - 20px));
}

.page-home .feature-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 3px;
  background: linear-gradient(180deg, var(--neon), transparent 90%);
  opacity: 0;
  transition: opacity var(--duration) var(--ease);
}

.page-home .feature-card:hover,
.page-home .feature-card:focus-within {
  transform: rotate(-1.2deg) scale(1.02);
  border-color: rgba(57, 255, 20, 0.4);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.42);
}

.page-home .feature-card:hover::after,
.page-home .feature-card:focus-within::after {
  opacity: 1;
}

.page-home .feature-card__icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(57, 255, 20, 0.08);
  border: 1px solid rgba(57, 255, 20, 0.2);
  border-radius: var(--radius-md);
  margin-bottom: 20px;
}

.page-home .feature-card h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  margin: 0 0 10px;
}

.page-home .feature-card p {
  margin: 0 0 18px;
  color: var(--gray);
  font-size: 0.92rem;
  line-height: 1.65;
  flex: 1;
}

.page-home .feature-card a {
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  color: var(--neon);
  text-decoration: none;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid transparent;
  padding-bottom: 3px;
  align-self: flex-start;
  transition: border-color var(--duration) var(--ease);
}

.page-home .feature-card a:hover {
  border-color: rgba(57, 255, 20, 0.5);
}

/* ------------------------------------------
   数据更新与覆盖说明
   ------------------------------------------ */
.page-home .home-metrics {
  padding: 72px 0 80px;
  position: relative;
  background:
    linear-gradient(118deg, rgba(255, 107, 53, 0.06) 0%, transparent 36%),
    linear-gradient(300deg, rgba(57, 255, 20, 0.05) 0%, transparent 44%),
    var(--navy-deep);
  border-top: 1px solid var(--navy-edge);
  border-bottom: 1px solid var(--navy-edge);
  overflow: hidden;
}

.page-home .home-metrics::after {
  content: "";
  position: absolute;
  right: -60px;
  top: 0;
  width: 240px;
  height: 240px;
  border: 1px solid rgba(57, 255, 20, 0.16);
  border-radius: 50%;
  pointer-events: none;
}

.page-home .home-metrics__head {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 40px;
}

.page-home .home-metrics__heading {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

.page-home .home-metrics__head p {
  margin: 0;
  color: var(--gray);
  font-size: 0.95rem;
  line-height: 1.7;
  max-width: 40em;
}

.page-home .home-metrics__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

.page-home .metric-block {
  background: var(--navy);
  border: 1px solid var(--navy-edge);
  border-radius: var(--radius-md);
  padding: 26px 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  clip-path: polygon(0 0, calc(100% - 18px) 0, 100% 18px, 100% 100%, 18px 100%, 0 calc(100% - 18px));
  transition:
    transform var(--duration) var(--ease),
    border-color var(--duration) var(--ease);
}

.page-home .metric-block:hover {
  transform: translateY(-4px);
  border-color: rgba(57, 255, 20, 0.4);
}

.page-home .metric-block__num {
  font-family: var(--font-display);
  font-size: 2.1rem;
  line-height: 1.1;
  color: var(--neon);
}

.page-home .metric-block:nth-child(2) .metric-block__num {
  color: var(--orange);
}

.page-home .metric-block:nth-child(4) .metric-block__num {
  color: var(--orange);
}

.page-home .metric-block__label {
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--gray);
  line-height: 1.5;
}

.page-home .home-metrics__note {
  margin: 36px 0 20px;
  color: var(--gray);
  font-size: 0.95rem;
  line-height: 1.7;
  max-width: 44em;
  border-left: 2px solid var(--orange);
  padding-left: 16px;
}

.page-home .home-metrics__link {
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  color: var(--neon);
  text-decoration: none;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(57, 255, 20, 0.35);
  padding-bottom: 4px;
}

.page-home .home-metrics__link:hover {
  border-color: var(--neon);
}

/* ------------------------------------------
   赛程与积分对照入口
   ------------------------------------------ */
.page-home .home-compare {
  padding: 72px 0 80px;
  background: var(--navy);
  position: relative;
}

.page-home .home-compare::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 12% 50%, rgba(57, 255, 20, 0.07), transparent 44%),
    radial-gradient(ellipse at 92% 20%, rgba(255, 107, 53, 0.07), transparent 38%);
  pointer-events: none;
}

.page-home .home-compare__grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  align-items: center;
}

.page-home .home-compare__media {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--navy-edge);
  background: var(--navy-deep);
  position: relative;
}

.page-home .home-compare__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 65%, rgba(57, 255, 20, 0.12));
  pointer-events: none;
}

.page-home .home-compare__media img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  max-height: 460px;
  object-fit: cover;
}

.page-home .home-compare__content {
  position: relative;
}

.page-home .home-compare__content .badge {
  display: inline-block;
  margin-bottom: 16px;
}

.page-home .home-compare__content h2 {
  margin-bottom: 16px;
}

.page-home .home-compare__content p {
  color: var(--gray);
  line-height: 1.7;
  font-size: 0.98rem;
  margin-bottom: 24px;
}

.page-home .home-compare__list {
  list-style: none;
  margin: 0 0 28px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.page-home .home-compare__list li {
  position: relative;
  padding-left: 24px;
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--white);
}

.page-home .home-compare__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 12px;
  height: 2px;
  background: var(--neon);
  box-shadow: 0 0 8px rgba(57, 255, 20, 0.5);
}

.page-home .home-compare__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

/* ------------------------------------------
   响应式：平板起点
   ------------------------------------------ */
@media (min-width: 768px) {
  .page-home .home-hero {
    padding: 64px 0 84px;
  }

  .page-home .home-hero__inner {
    grid-template-columns: 7fr 5fr;
    gap: 48px;
    align-items: center;
  }

  .page-home .home-hero__visual {
    left: 0;
    right: auto;
    width: 78%;
    max-width: 540px;
  }

  .page-home .home-hero__facts {
    gap: 36px;
  }

  .page-home .board-panel {
    padding: 28px 26px 24px;
  }

  .page-home .home-index__list {
    grid-template-columns: repeat(2, 1fr);
  }

  .page-home .home-index__item:nth-child(odd) {
    border-right: 1px solid rgba(168, 180, 200, 0.12);
  }

  .page-home .home-index__item:nth-child(3) {
    border-bottom: 0;
  }

  .page-home .home-ticker__head {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
    gap: 32px;
  }

  .page-home .home-ticker__head p {
    text-align: right;
  }

  .page-home .home-features__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .page-home .home-metrics__head {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
    gap: 32px;
  }

  .page-home .home-metrics__head p {
    text-align: right;
  }

  .page-home .home-metrics__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .page-home .home-compare__grid {
    grid-template-columns: 5fr 7fr;
    gap: 48px;
  }

  .page-home .home-compare__media img {
    max-height: 520px;
  }
}

/* ------------------------------------------
   响应式：桌面起点
   ------------------------------------------ */
@media (min-width: 1024px) {
  .page-home .home-hero {
    padding: 72px 0 96px;
  }

  .page-home .home-hero__inner {
    gap: 56px;
  }

  .page-home .home-hero__lead {
    font-size: 1.12rem;
  }

  .page-home .home-hero__facts {
    gap: 48px;
  }

  .page-home .home-index__list {
    grid-template-columns: repeat(4, 1fr);
  }

  .page-home .home-index__item {
    border-right: 1px solid rgba(168, 180, 200, 0.12);
    border-bottom: 0;
  }

  .page-home .home-index__item:last-child {
    border-right: 0;
  }

  .page-home .home-index__item:nth-child(odd) {
    border-right: 1px solid rgba(168, 180, 200, 0.12);
  }

  .page-home .home-index__item:hover {
    padding-left: 20px;
  }

  .page-home .home-ticker {
    padding: 88px 0 80px;
  }

  .page-home .home-ticker__head {
    margin-bottom: 36px;
  }

  .page-home .home-ticker__heading {
    flex-direction: row;
    align-items: center;
    gap: 16px;
  }

  .page-home .home-features {
    padding: 88px 0 100px;
  }

  .page-home .home-features__head {
    margin-bottom: 48px;
  }

  .page-home .home-features__grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
  }

  .page-home .home-metrics {
    padding: 88px 0 96px;
  }

  .page-home .home-metrics__grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
  }

  .page-home .metric-block {
    padding: 32px 26px;
  }

  .page-home .home-compare {
    padding: 88px 0 96px;
  }

  .page-home .home-compare__grid {
    grid-template-columns: 1fr 1fr;
    gap: 64px;
  }

  .page-home .home-compare__content p {
    font-size: 1.02rem;
  }
}

/* ------------------------------------------
   减弱动态效果
   ------------------------------------------ */
@media (prefers-reduced-motion: reduce) {
  .page-home .home-ticker__track {
    animation: none;
  }

  .page-home .home-ticker__viewport {
    overflow-x: auto;
  }

  .page-home .feature-card:hover,
  .page-home .feature-card:focus-within {
    transform: none;
  }

  .page-home .board-row:hover {
    transform: none;
  }
}
