.page-home {
  --home-edge: rgba(11, 27, 43, .10);
  --home-node: var(--glacier);
  background: var(--paper);
  color: var(--text-ink);
  font-family: var(--font-sans);
  overflow-x: hidden;
}
.page-home img {
  display: block;
  max-width: 100%;
  height: auto;
}

/* 面包屑 */
.page-home .breadcrumbs {
  padding: 14px 0 4px;
}
.page-home .breadcrumbs__list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: .04em;
  color: var(--slate);
}
.page-home .breadcrumbs__list a {
  color: var(--slate);
  text-decoration: none;
}
.page-home .breadcrumbs__list a:hover {
  color: var(--night);
}
.page-home .breadcrumbs__list li + li::before {
  content: "›";
  margin-right: 8px;
  color: var(--glacier);
}

/* 首屏框景 */
.page-home .hero {
  padding: 14px 0 0;
}
.page-home .hero__frame {
  background:
    radial-gradient(1100px 480px at 84% -14%, rgba(111, 211, 232, .24), transparent 62%),
    linear-gradient(158deg, var(--night) 0%, var(--ink) 70%);
  color: var(--flag-white);
  border-radius: var(--radius);
  overflow: hidden;
}
.page-home .hero__inner {
  padding: clamp(20px, 3.6vw, 42px);
}
.page-home .hero__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-bottom: 22px;
}
.page-home .hero__meta .index-tag {
  color: var(--glacier);
}
.page-home .hero__rule {
  flex: 1 1 90px;
  min-width: 60px;
  opacity: .55;
}
.page-home .hero__meta-note {
  font-size: 12px;
  letter-spacing: .05em;
  color: rgba(255, 255, 255, .66);
}
.page-home .hero__grid {
  display: grid;
  gap: 26px;
}
.page-home .hero__copy h1 {
  margin: 0 0 16px;
  font-size: clamp(27px, 6.4vw, 46px);
  line-height: 1.18;
  font-weight: 800;
  letter-spacing: -.02em;
}
.page-home .hero__lead {
  margin: 0 0 22px;
  max-width: 46ch;
  font-size: 17px;
  line-height: 1.8;
  color: rgba(255, 255, 255, .84);
}
.page-home .hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.page-home .hero__foot {
  margin: 16px 0 0;
  font-size: 12px;
  letter-spacing: .06em;
  color: rgba(111, 211, 232, .8);
}

.page-home .hero__entries {
  display: grid;
  gap: 14px;
}
.page-home .entry {
  border: 1px solid var(--glass-line);
  background: var(--glass);
  border-radius: var(--radius);
  overflow: hidden;
  backdrop-filter: blur(6px);
}
.page-home .entry__media {
  margin: 0;
}
.page-home .entry__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .82;
}
.page-home .entry__body {
  padding: 16px 18px 18px;
}
.page-home .entry__kicker {
  margin: 0 0 6px;
  font-size: 12px;
  letter-spacing: .1em;
  color: var(--glacier);
}
.page-home .entry__title {
  margin: 0 0 12px;
  font-size: 20px;
  line-height: 1.35;
  font-weight: 700;
  letter-spacing: -.01em;
}
.page-home .entry__stats {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 6px;
  border-top: 1px solid rgba(255, 255, 255, .14);
  padding-top: 12px;
}
.page-home .entry__stats li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255, 255, 255, .78);
}
.page-home .entry__stat-v {
  font-weight: 600;
  color: var(--flag-yellow);
  white-space: nowrap;
}
.page-home .entry__note {
  margin: 12px 0 0;
  font-size: 13px;
  line-height: 1.7;
  color: rgba(255, 255, 255, .62);
}

/* 区块通用 */
.page-home .section {
  padding: clamp(44px, 7vw, 80px) 0;
}
.page-home .section .section-head__idx {
  color: var(--night);
}
.page-home .section .section-head__title {
  font-weight: 800;
  letter-spacing: -.02em;
}
.page-home .section .section-head__note {
  color: var(--text-soft);
}

/* 磁贴墙 */
.page-home .tilewall {
  background:
    linear-gradient(180deg, rgba(245, 240, 230, 1) 0%, rgba(255, 253, 248, 1) 100%);
}
.page-home .filterbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin: 22px 0 20px;
}
.page-home .filterbar__label {
  font-size: 12px;
  letter-spacing: .08em;
  color: var(--slate);
}
.page-home .chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.page-home .chip {
  border: 1px solid var(--line-strong);
  background: transparent;
  color: var(--night);
  font-family: var(--font-sans);
  cursor: pointer;
}
.page-home .chip[aria-pressed="true"] {
  background: var(--night);
  border-color: var(--glacier);
  color: var(--flag-white);
}
.page-home .filter-status {
  margin-left: auto;
  font-size: 12px;
  letter-spacing: .05em;
  color: var(--slate);
}

.page-home .tiles {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}
.page-home .tile {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 16px;
  border-radius: var(--radius);
  text-decoration: none;
  border: 1px solid rgba(111, 211, 232, .22);
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}
.page-home .tile:hover,
.page-home .tile:focus-visible {
  transform: translateY(-3px);
  border-color: var(--glacier);
  box-shadow: var(--shadow-2);
}
.page-home .tile__idx {
  font-size: 12px;
  letter-spacing: .1em;
  color: rgba(111, 211, 232, .85);
}
.page-home .tile .status {
  align-self: flex-start;
}
.page-home .tile__title {
  margin: 2px 0 0;
  font-size: 18px;
  line-height: 1.35;
  font-weight: 700;
  color: var(--flag-white);
}
.page-home .tile__desc {
  margin: 0;
  font-size: 14px;
  line-height: 1.75;
  color: rgba(255, 255, 255, .72);
}
.page-home .tile__meta {
  margin-top: auto;
  padding-top: 10px;
  border-top: 1px solid rgba(255, 255, 255, .12);
  font-size: 12px;
  letter-spacing: .04em;
  color: rgba(111, 211, 232, .8);
}

/* 三分钟节奏 */
.page-home .rhythm {
  background: var(--paper);
}
.page-home .rhythm__grid {
  display: grid;
  gap: 26px;
}
.page-home .timeline {
  margin: 24px 0 0;
  padding: 0 0 0 20px;
  list-style: none;
  border-left: 2px solid var(--line-strong);
}
.page-home .timeline__item {
  position: relative;
  padding: 0 0 22px 20px;
}
.page-home .timeline__item:last-child {
  padding-bottom: 4px;
}
.page-home .timeline__item::before {
  content: "";
  position: absolute;
  left: -29px;
  top: 4px;
  width: 16px;
  height: 16px;
  border-radius: 2px;
  background: var(--home-node);
  box-shadow: 0 0 0 4px var(--paper);
}
.page-home .timeline__item--blue { --home-node: var(--flag-blue); }
.page-home .timeline__item--green { --home-node: var(--flag-green); }
.page-home .timeline__item--yellow { --home-node: var(--flag-yellow); }
.page-home .timeline__item--glacier { --home-node: var(--glacier); }
.page-home .timeline__time {
  display: inline-block;
  margin-bottom: 6px;
  padding: 2px 8px;
  border: 1px solid var(--line);
  background: var(--paper-2);
  border-radius: 2px;
  font-size: 12px;
  letter-spacing: .08em;
  color: var(--night);
}
.page-home .timeline__title {
  margin: 0 0 4px;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -.01em;
}
.page-home .timeline__desc {
  margin: 0;
  font-size: 15px;
  line-height: 1.8;
  color: var(--text-soft);
}
.page-home .rhythm__foot {
  margin: 22px 0 0;
  padding: 14px 16px;
  border-left: 3px solid var(--glacier);
  background: rgba(18, 57, 94, .06);
  font-size: 14px;
  line-height: 1.8;
  color: var(--night);
}
.page-home .rhythm__media {
  margin: 0;
}
.page-home .rhythm__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* 球员数据对照 */
.page-home .compare {
  background: linear-gradient(180deg, rgba(18, 57, 94, .06) 0%, rgba(245, 240, 230, 0) 70%);
}
.page-home .compare__grid {
  display: grid;
  gap: 14px;
  margin-top: 24px;
}
.page-home .compare__side {
  padding: 18px 18px 20px;
  background: var(--paper-2);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
}
.page-home .compare__side--eff {
  border-top: 4px solid var(--glacier);
}
.page-home .compare__side--state {
  border-top: 4px solid var(--flag-yellow);
}
.page-home .compare__kicker {
  margin: 0 0 4px;
  font-size: 12px;
  letter-spacing: .1em;
  color: var(--slate);
}
.page-home .compare__title {
  margin: 0 0 12px;
  font-size: 21px;
  font-weight: 800;
  letter-spacing: -.02em;
  color: var(--night);
}
.page-home .compare__meter {
  display: block;
  height: 8px;
  margin-bottom: 16px;
  border-radius: 2px;
  background:
    linear-gradient(90deg,
      var(--glacier) 0 18%,
      rgba(111, 211, 232, .38) 18% 38%,
      var(--flag-blue) 38% 56%,
      rgba(46, 111, 191, .32) 56% 74%,
      var(--night) 74% 100%);
}
.page-home .compare__side--state .compare__meter {
  background:
    linear-gradient(90deg,
      var(--flag-yellow) 0 16%,
      rgba(232, 179, 58, .38) 16% 40%,
      var(--flag-green) 40% 62%,
      rgba(46, 158, 107, .32) 62% 82%,
      var(--night) 82% 100%);
}
.page-home .compare__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
}
.page-home .compare__list li {
  position: relative;
  padding-left: 16px;
  font-size: 15px;
  line-height: 1.75;
  color: var(--text-soft);
}
.page-home .compare__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 11px;
  width: 7px;
  height: 7px;
  background: var(--night);
  border-radius: 1px;
}
.page-home .compare__foot {
  display: grid;
  gap: 20px;
  margin-top: 22px;
}
.page-home .compare__media {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
}
.page-home .compare__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.page-home .accordion__trigger {
  font-family: var(--font-sans);
  font-size: 15px;
  color: var(--night);
}
.page-home .accordion__panel {
  font-size: 14px;
  line-height: 1.85;
  color: var(--text-soft);
}

/* 快速索引 */
.page-home .quickindex {
  background: var(--ink);
  color: var(--flag-white);
}
.page-home .quickindex .section-head__idx {
  color: var(--glacier);
}
.page-home .quickindex .section-head__title {
  color: var(--flag-white);
}
.page-home .quickindex .section-head__note {
  color: rgba(255, 255, 255, .68);
}
.page-home .quickindex__list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}
.page-home .quickindex__item a {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 18px;
  border: 1px solid rgba(111, 211, 232, .26);
  background: var(--glass);
  border-radius: var(--radius);
  text-decoration: none;
  color: var(--flag-white);
  transition: border-color .18s ease, transform .18s ease;
}
.page-home .quickindex__item a:hover,
.page-home .quickindex__item a:focus-visible {
  border-color: var(--glacier);
  transform: translateX(4px);
}
.page-home .quickindex__num {
  font-size: 20px;
  font-weight: 600;
  line-height: 1.2;
  color: var(--glacier);
}
.page-home .quickindex__body {
  display: block;
}
.page-home .quickindex__title {
  display: block;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -.01em;
}
.page-home .quickindex__desc {
  display: block;
  margin-top: 4px;
  font-size: 13px;
  line-height: 1.7;
  color: rgba(255, 255, 255, .66);
}

/* 收束区 */
.page-home .closing {
  padding: 0 0 clamp(40px, 6vw, 70px);
  background: var(--ink);
}
.page-home .closing__media {
  margin: 0 0 clamp(24px, 4vw, 40px);
  border-radius: var(--radius);
  overflow: hidden;
}
.page-home .closing__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.page-home .closing__band {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px;
  border: 1px solid rgba(111, 211, 232, .3);
  border-left: 4px solid var(--flag-yellow);
  border-radius: var(--radius);
  background: var(--glass);
}
.page-home .closing__line {
  margin: 0;
  max-width: 52ch;
  font-size: 16px;
  line-height: 1.8;
  color: rgba(255, 255, 255, .86);
}

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

@media (min-width: 900px) {
  .page-home .hero__grid {
    grid-template-columns: 1.02fr 1fr;
    align-items: start;
    gap: 34px;
  }
  .page-home .hero__copy h1 {
    margin-bottom: 18px;
  }
  .page-home .tiles {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  .page-home .rhythm__grid {
    grid-template-columns: 1.15fr .85fr;
    gap: 36px;
    align-items: start;
  }
  .page-home .rhythm__media {
    position: sticky;
    top: 96px;
  }
  .page-home .compare__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
  }
  .page-home .compare__foot {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    align-items: start;
  }
}

@media (min-width: 1100px) {
  .page-home .quickindex__list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .page-home .quickindex__item:nth-child(4),
  .page-home .quickindex__item:nth-child(5) {
    grid-column: span 1;
  }
}

@media (prefers-reduced-motion: reduce) {
  .page-home .tile,
  .page-home .quickindex__item a {
    transition: none;
  }
  .page-home .tile:hover,
  .page-home .tile:focus-visible,
  .page-home .quickindex__item a:hover,
  .page-home .quickindex__item a:focus-visible {
    transform: none;
  }
}
