.page-home {
  --home-line: rgba(232, 241, 236, 0.14);
  --home-lime-soft: rgba(200, 255, 77, 0.14);
  --home-text: rgba(232, 241, 236, 0.88);
  overflow-x: clip;
  padding-bottom: clamp(1.5rem, 5vw, 3rem);
}

/* ---------- 面包屑 ---------- */
.page-home .breadcrumb {
  padding-top: clamp(0.9rem, 2.5vw, 1.4rem);
}

/* ---------- 首屏 ---------- */
.page-home .hero {
  position: relative;
  isolation: isolate;
  padding: clamp(1.4rem, 4vw, 2.6rem) 0 clamp(2.4rem, 7vw, 4.4rem);
}

.page-home .hero::before {
  content: "";
  position: absolute;
  inset: -12% -18% 26% -18%;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(38rem 22rem at 78% 16%, rgba(43, 224, 192, 0.13), transparent 66%),
    radial-gradient(30rem 18rem at 10% 64%, rgba(200, 255, 77, 0.08), transparent 70%);
}

.page-home .hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.55;
  background-image: repeating-linear-gradient(115deg, rgba(43, 224, 192, 0.055) 0 1px, transparent 1px 118px);
}

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

.page-home .hero__grid {
  display: grid;
  gap: clamp(1.6rem, 5vw, 3rem);
}

.page-home .hero__title {
  margin: 0.6rem 0 0;
  font-family: var(--font-head);
  font-weight: 900;
  font-size: clamp(2.25rem, 7.4vw, 5.1rem);
  line-height: 1.04;
  letter-spacing: -0.01em;
  color: var(--mist);
  text-wrap: balance;
}

.page-home .hero__title-mark {
  color: var(--lime);
}

.page-home .hero__lede {
  margin-top: clamp(0.9rem, 2.6vw, 1.3rem);
  color: var(--home-text);
  line-height: 1.8;
  max-width: 38ch;
}

.page-home .hero__quick {
  list-style: none;
  margin: clamp(1.5rem, 4vw, 2.1rem) 0 0;
  padding: 0;
  display: grid;
  gap: 0.6rem;
}

.page-home .quick {
  display: grid;
  grid-template-columns: 2.5rem minmax(0, 1fr);
  align-items: center;
  gap: 0.9rem;
  padding: 0.8rem 1rem;
  border: 1px solid var(--home-line);
  border-left: 3px solid rgba(232, 241, 236, 0.16);
  border-radius: var(--radius);
  background: linear-gradient(100deg, rgba(15, 51, 43, 0.72), rgba(12, 16, 14, 0.52));
  color: var(--mist);
  text-decoration: none;
  transition: border-color 0.25s ease, background 0.25s ease, transform 0.25s ease;
}

.page-home .hero__quick > li:nth-child(-n + 2) .quick {
  border-left-color: var(--lime);
}

.page-home .quick:hover,
.page-home .quick:focus-visible {
  border-left-color: var(--lime);
  background: linear-gradient(100deg, rgba(15, 51, 43, 0.96), rgba(12, 16, 14, 0.82));
  transform: translateX(4px);
}

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

.page-home .quick__no {
  font-family: var(--font-num);
  font-size: 0.95rem;
  color: var(--gold);
  letter-spacing: 0.04em;
}

.page-home .quick__body {
  display: grid;
  gap: 0.15rem;
  min-width: 0;
}

.page-home .quick__name {
  font-size: 1rem;
  font-weight: 700;
  color: var(--mist);
}

.page-home .quick__desc {
  font-size: 0.8125rem;
  line-height: 1.55;
  color: var(--sage);
}

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

.page-home .hero__media {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--home-line);
  box-shadow: 0 26px 60px rgba(0, 0, 0, 0.45);
}

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

.page-home .hero__stamp {
  position: absolute;
  right: 0.9rem;
  bottom: -0.85rem;
  margin: 0;
  padding: 0.5rem 0.95rem;
  border-radius: 999px;
  background: var(--lime);
  color: #05201A;
  font-size: 0.8125rem;
  font-weight: 700;
}

.page-home .hero__stamp .num {
  font-family: var(--font-num);
  font-size: 1rem;
}

/* ---------- 关键数值带 ---------- */
.page-home .hero__meters {
  position: relative;
  margin-top: clamp(2.4rem, 7vw, 4rem);
  padding: clamp(1.3rem, 3.6vw, 2.2rem);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(200, 255, 77, 0.2);
  background: linear-gradient(120deg, rgba(12, 16, 14, 0.95), rgba(5, 32, 26, 0.88));
  overflow: hidden;
}

.page-home .meters__bg {
  position: absolute;
  inset: 0;
  opacity: 0.24;
}

.page-home .meters__bg img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-home .meters {
  position: relative;
  z-index: 1;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.15rem 1.3rem;
}

.page-home .meter__value {
  margin: 0;
  display: flex;
  align-items: baseline;
  gap: 0.3rem;
  font-family: var(--font-num);
  font-size: clamp(1.85rem, 5.2vw, 2.85rem);
  line-height: 1;
  color: var(--lime);
}

.page-home .meter:nth-child(2n) .meter__value {
  color: var(--gold);
}

.page-home .meter__unit {
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: var(--sage);
}

.page-home .meter__label {
  margin: 0.5rem 0 0;
  font-size: 0.8125rem;
  line-height: 1.65;
  color: var(--sage);
}

.page-home .meters__note {
  position: relative;
  z-index: 1;
  margin: 1.5rem 0 0;
  padding-top: 1rem;
  border-top: 1px dashed rgba(232, 241, 236, 0.16);
  font-size: 0.8125rem;
  line-height: 1.7;
  color: var(--sage);
}

/* ---------- 章节通用 ---------- */
.page-home .band {
  padding: clamp(3rem, 8vw, 6.4rem) 0;
}

.page-home .band__head {
  max-width: 46rem;
}

.page-home .band__title {
  margin: 0.5rem 0 0.9rem;
  font-family: var(--font-head);
  font-weight: 900;
  font-size: clamp(1.7rem, 4.4vw, 2.85rem);
  line-height: 1.16;
  letter-spacing: -0.01em;
  color: var(--mist);
}

.page-home .band__foot {
  margin: clamp(1.6rem, 4vw, 2.4rem) 0 0;
}

.page-home .band--directory {
  background: linear-gradient(180deg, rgba(15, 51, 43, 0), rgba(15, 51, 43, 0.55) 45%, rgba(15, 51, 43, 0));
}

/* ---------- 球员名录 ---------- */
.page-home .directory__grid {
  margin-top: clamp(1.8rem, 5vw, 2.8rem);
  display: grid;
  gap: clamp(1.4rem, 4vw, 2.2rem);
}

.page-home .directory__figure {
  margin: 0;
}

.page-home .directory__figure .media {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--home-line);
}

.page-home .directory__figure img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 2;
  object-fit: cover;
}

.page-home .directory__figure figcaption {
  margin-top: 0.7rem;
  font-size: 0.8125rem;
  line-height: 1.65;
  color: var(--sage);
}

.page-home .pos-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.9rem;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 15rem), 1fr));
}

.page-home .pos-card {
  padding: 1.1rem 1.2rem;
  border-radius: var(--radius);
  border: 1px solid var(--home-line);
  background: rgba(15, 51, 43, 0.74);
}

.page-home .pos-card__tag {
  margin: 0;
  display: inline-block;
  padding: 0.15rem 0.5rem;
  border-radius: 4px;
  background: var(--home-lime-soft);
  color: var(--lime);
  font-family: var(--font-num);
  font-size: 0.6875rem;
  letter-spacing: 0.08em;
}

.page-home .pos-card__name {
  margin: 0.75rem 0 0.4rem;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.05rem;
  color: var(--mist);
}

.page-home .pos-card__desc {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.72;
  color: var(--sage);
}

/* ---------- 赛区分布 ---------- */
.page-home .regions__grid {
  margin-top: clamp(1.8rem, 5vw, 2.8rem);
  display: grid;
  gap: clamp(1.4rem, 4vw, 2.4rem);
}

.page-home .regions__map {
  padding: clamp(0.9rem, 2.4vw, 1.4rem);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(110, 31, 44, 0.6);
  background: linear-gradient(150deg, rgba(110, 31, 44, 0.5), rgba(12, 16, 14, 0.78));
}

.page-home .regions__map img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: var(--radius);
}

.page-home .regions__zones {
  list-style: none;
  margin: 0 0 1.3rem;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.page-home .zone {
  display: inline-block;
  padding: 0.3rem 0.75rem;
  border-radius: 999px;
  border: 1px solid rgba(240, 178, 74, 0.42);
  background: rgba(240, 178, 74, 0.08);
  color: var(--gold);
  font-size: 0.8125rem;
}

.page-home .regions__body p {
  margin: 0 0 1rem;
  font-size: 0.9375rem;
  line-height: 1.8;
  color: var(--home-text);
}

.page-home .regions__body p:last-child {
  margin-bottom: 0;
}

/* ---------- 赛季档案与订阅 ---------- */
.page-home .band--archive {
  background: linear-gradient(160deg, rgba(42, 42, 94, 0.42), rgba(5, 32, 26, 0.08) 72%);
}

.page-home .archive__grid {
  margin-top: clamp(1.8rem, 5vw, 2.6rem);
  display: grid;
  gap: clamp(1.2rem, 3.5vw, 1.8rem);
}

.page-home .archive__steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.85rem;
}

.page-home .step {
  display: grid;
  grid-template-columns: 2.2rem minmax(0, 1fr);
  gap: 0.9rem;
  padding: 1rem 1.15rem;
  border-radius: var(--radius);
  border: 1px solid rgba(42, 42, 94, 0.62);
  background: rgba(42, 42, 94, 0.3);
}

.page-home .step__no {
  font-family: var(--font-num);
  font-size: 1.05rem;
  color: var(--pulse);
  letter-spacing: 0.04em;
}

.page-home .step__title {
  margin: 0;
  font-size: 1rem;
  font-weight: 700;
  color: var(--mist);
}

.page-home .step__desc {
  margin: 0.35rem 0 0;
  font-size: 0.875rem;
  line-height: 1.72;
  color: var(--sage);
}

.page-home .archive__note {
  padding: clamp(1.1rem, 3vw, 1.5rem);
  border-radius: var(--radius);
  border: 1px solid rgba(43, 224, 192, 0.28);
  background: rgba(5, 32, 26, 0.72);
  align-self: start;
}

.page-home .archive__note-title {
  margin: 0 0 0.6rem;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--mist);
}

.page-home .archive__note p {
  margin: 0 0 1.1rem;
  font-size: 0.875rem;
  line-height: 1.75;
  color: var(--sage);
}

.page-home .archive__note p:last-child {
  margin-bottom: 0;
}

/* ---------- 站内检索 ---------- */
.page-home .search-panel {
  margin-top: clamp(1.7rem, 4.5vw, 2.4rem);
  padding: clamp(1.1rem, 3.2vw, 1.8rem);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(43, 224, 192, 0.3);
  background: rgba(12, 16, 14, 0.78);
}

.page-home .search-panel__bar {
  display: grid;
  gap: 0.7rem;
}

.page-home .search-panel__label {
  font-size: 0.8125rem;
  color: var(--sage);
}

.page-home .search-panel__input {
  width: 100%;
  padding: 0.85rem 1rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--mist);
  background: rgba(5, 32, 26, 0.85);
  border: 1px solid var(--home-line);
  border-radius: var(--radius);
}

.page-home .search-panel__input::placeholder {
  color: rgba(126, 150, 140, 0.9);
}

.page-home .search-panel__input:focus-visible {
  outline: 2px solid var(--lime);
  outline-offset: 2px;
}

.page-home .search-panel__go {
  justify-self: start;
}

.page-home .search-panel__hint {
  margin: 1.4rem 0 0.7rem;
  font-size: 0.8125rem;
  color: var(--sage);
}

.page-home .chips {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.page-home .chip {
  display: inline-block;
  padding: 0.38rem 0.85rem;
  border-radius: 999px;
  border: 1px solid var(--home-line);
  color: var(--mist);
  font-size: 0.8125rem;
  text-decoration: none;
  transition: border-color 0.2s ease, color 0.2s ease;
}

.page-home .chip:hover,
.page-home .chip:focus-visible {
  border-color: var(--lime);
  color: var(--lime);
}

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

/* ---------- 最近更新 ---------- */
.page-home .updates {
  list-style: none;
  margin: clamp(1.6rem, 4vw, 2.4rem) 0 0;
  padding: 0;
}

.page-home .update {
  display: grid;
  gap: 0.4rem;
  padding: 1.2rem 0;
  border-top: 1px solid var(--home-line);
}

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

.page-home .update__stage {
  margin: 0;
  font-family: var(--font-num);
  font-size: 0.8125rem;
  letter-spacing: 0.04em;
  color: var(--gold);
}

.page-home .update__title {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.5;
  color: var(--mist);
}

.page-home .update__desc {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.75;
  color: var(--sage);
}

/* ---------- 收束 ---------- */
.page-home .band--closing {
  padding-bottom: clamp(3rem, 8vw, 6rem);
}

.page-home .closing__inner {
  padding: clamp(1.6rem, 4.5vw, 2.8rem);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(200, 255, 77, 0.22);
  background: linear-gradient(135deg, rgba(15, 51, 43, 0.88), rgba(5, 32, 26, 0.72));
}

.page-home .closing__title {
  margin: 0 0 0.8rem;
  font-family: var(--font-head);
  font-weight: 900;
  font-size: clamp(1.5rem, 4vw, 2.3rem);
  line-height: 1.2;
  color: var(--mist);
}

.page-home .closing__text {
  margin: 0;
  max-width: 44ch;
  font-size: 0.9375rem;
  line-height: 1.8;
  color: var(--home-text);
}

.page-home .closing__links {
  margin-top: 1.4rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

/* ---------- 平板及以上 ---------- */
@media (min-width: 48rem) {
  .page-home .archive__grid {
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
    align-items: start;
  }

  .page-home .search-panel__bar {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
  }

  .page-home .search-panel__label {
    grid-column: 1 / -1;
  }

  .page-home .update {
    grid-template-columns: 9rem minmax(0, 1fr);
    gap: 0.35rem 1.6rem;
  }

  .page-home .update__stage {
    grid-row: 1 / 3;
    align-self: start;
    padding-top: 0.15rem;
  }
}

/* ---------- 桌面端 ---------- */
@media (min-width: 60rem) {
  .page-home .hero__grid {
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    gap: clamp(2rem, 4vw, 4rem);
    align-items: start;
  }

  .page-home .hero__stage {
    margin-top: 2.4rem;
  }

  .page-home .meters {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.4rem;
  }

  .page-home .directory__grid {
    grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
    gap: clamp(1.8rem, 4vw, 2.8rem);
    align-items: start;
  }

  .page-home .directory__figure {
    margin-top: 2.8rem;
  }

  .page-home .regions__grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
    gap: clamp(2rem, 4vw, 3.2rem);
    align-items: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  .page-home .quick {
    transition: none;
  }

  .page-home .quick:hover,
  .page-home .quick:focus-visible {
    transform: none;
  }

  .page-home .chip {
    transition: none;
  }
}
