.page-home {
  --home-section: clamp(40px, 7vw, 92px);
  --home-gap: clamp(16px, 2.4vw, 26px);
  background:
    radial-gradient(120% 68% at 86% -8%, rgba(30, 107, 79, .52), transparent 62%),
    var(--pitch);
  color: var(--white);
  overflow-x: clip;
}

.page-home .hero__crumb {
  margin-bottom: clamp(10px, 2vw, 18px);
}

.page-home .breadcrumb__item {
  font-size: 12px;
  letter-spacing: .08em;
  color: var(--mist);
}

/* ---------- 首屏分屏 ---------- */
.page-home .hero {
  padding-block: clamp(22px, 4vw, 44px) clamp(34px, 6vw, 74px);
}

.page-home .hero__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(26px, 5vw, 54px);
  align-items: center;
}

.page-home .hero__copy h1 {
  margin: 12px 0 16px;
  font-size: clamp(34px, 6.6vw, 58px);
  line-height: 1.08;
  letter-spacing: -.022em;
  font-weight: 900;
}

.page-home .hero__lead {
  max-width: 44ch;
  font-size: clamp(16px, 1.6vw, 17px);
  line-height: 1.75;
  color: rgba(255, 255, 255, .88);
}

.page-home .hero__sub {
  margin-top: 12px;
  max-width: 46ch;
  font-size: 14px;
  line-height: 1.7;
  color: var(--mist);
}

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

.page-home .hero__copy > * {
  animation: home-rise .55s var(--ease) both;
}
.page-home .hero__copy > :nth-child(2) { animation-delay: .04s; }
.page-home .hero__copy > :nth-child(3) { animation-delay: .1s; }
.page-home .hero__copy > :nth-child(4) { animation-delay: .16s; }
.page-home .hero__copy > :nth-child(5) { animation-delay: .22s; }

@keyframes home-rise {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: none; }
}

.page-home .hero__visual {
  position: relative;
  overflow: hidden;
  border-radius: var(--r-l);
  background: var(--pitch-deep);
  box-shadow: var(--shadow-2);
  aspect-ratio: 4 / 3;
  min-height: 320px;
}

.page-home .hero__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.72) contrast(1.06) brightness(.78);
}

.page-home .hero__mesh {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(228, 255, 77, .12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(228, 255, 77, .12) 1px, transparent 1px);
  background-size: 44px 44px;
  -webkit-mask-image: linear-gradient(to bottom, rgba(0, 0, 0, .85), transparent 76%);
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, .85), transparent 76%);
  pointer-events: none;
}

.page-home .hero__board {
  position: absolute;
  left: clamp(14px, 2.6vw, 26px);
  right: clamp(14px, 2.6vw, 26px);
  bottom: clamp(14px, 2.6vw, 26px);
  padding: clamp(16px, 2.4vw, 24px);
  background: rgba(6, 32, 25, .84);
  border: 1px solid rgba(228, 255, 77, .34);
  border-radius: var(--r-m);
  backdrop-filter: blur(9px);
  -webkit-backdrop-filter: blur(9px);
}

.page-home .board__main {
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.page-home .board__num {
  font-size: clamp(42px, 8.6vw, 76px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -.03em;
  color: var(--lemon);
}

.page-home .board__unit {
  font-size: 18px;
  color: var(--mist);
}

.page-home .board__label {
  margin-top: 6px;
  font-size: 13px;
  color: var(--mist);
}

.page-home .board__split {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid rgba(169, 184, 176, .22);
}

.page-home .board__cell {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.page-home .board__val {
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
}

.page-home .board__cap {
  font-size: 12px;
  font-style: normal;
  letter-spacing: .04em;
  color: var(--mist);
}

/* ---------- 四类入口错位卡带 ---------- */
.page-home .entries {
  padding-block: var(--home-section);
}

.page-home .entries__head {
  max-width: 62ch;
  margin-bottom: clamp(22px, 3.4vw, 38px);
}

.page-home .entries__title {
  font-size: clamp(26px, 3.6vw, 38px);
  line-height: 1.18;
  letter-spacing: -.02em;
  font-weight: 900;
}

.page-home .entries__lead {
  margin-top: 10px;
  font-size: 15px;
  line-height: 1.7;
  color: var(--mist);
}

.page-home .entries__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--home-gap);
  align-items: start;
}

.page-home .entry-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: clamp(18px, 2.4vw, 26px);
  border: 1px solid rgba(169, 184, 176, .18);
  border-top-width: 3px;
  border-radius: var(--r-m);
  background: linear-gradient(158deg, rgba(30, 107, 79, .52), rgba(6, 32, 25, .9));
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s var(--ease);
}

.page-home .entry-card:hover,
.page-home .entry-card:focus-within {
  transform: translateY(-4px);
  box-shadow: var(--shadow-2);
  border-color: rgba(228, 255, 77, .4);
}

.page-home .entry-card--red { border-top-color: var(--red); }
.page-home .entry-card--blue { border-top-color: var(--blue); }
.page-home .entry-card--lemon { border-top-color: var(--lemon); }
.page-home .entry-card--amber { border-top-color: var(--amber); }

.page-home .entry-card__title {
  font-size: clamp(19px, 2.1vw, 23px);
  line-height: 1.3;
  letter-spacing: -.01em;
  font-weight: 800;
}

.page-home .entry-card__text {
  font-size: 14px;
  line-height: 1.72;
  color: rgba(255, 255, 255, .8);
}

.page-home .entry-card__meta {
  font-size: 12px;
  letter-spacing: .04em;
  color: var(--mist);
}

.page-home .entry-card__link {
  margin-top: auto;
  padding-top: 8px;
  font-size: 14px;
  font-weight: 700;
  color: var(--lemon);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  align-self: flex-start;
  transition: border-color .3s var(--ease);
}

.page-home .entry-card__link:hover {
  border-bottom-color: var(--lemon);
}

/* ---------- 联赛专题分组 ---------- */
.page-home .leagues {
  padding-block: var(--home-section);
}

.page-home .league-band {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(20px, 3vw, 34px);
}

.page-home .league-band__media {
  position: relative;
  overflow: hidden;
  border-radius: var(--r-l);
  background: var(--pitch-deep);
  aspect-ratio: 16 / 9;
  margin: 0;
}

.page-home .league-band__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.6) brightness(.66);
}

.page-home .league-band__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(11, 61, 46, .35), rgba(6, 32, 25, .82));
  pointer-events: none;
}

.page-home .league-band__title {
  font-size: clamp(24px, 3.2vw, 34px);
  line-height: 1.2;
  letter-spacing: -.02em;
  font-weight: 900;
}

.page-home .league-band__lead {
  margin-top: 10px;
  max-width: 60ch;
  font-size: 15px;
  line-height: 1.72;
  color: rgba(255, 255, 255, .82);
}

.page-home .filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: clamp(16px, 2.4vw, 24px) 0 12px;
}

.page-home .league-band__count {
  margin-bottom: 6px;
}

.page-home .league-band__count span {
  font-family: var(--font-mono);
  color: var(--lemon);
}

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

.page-home .league-item {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 4px 18px;
  padding: 14px 2px;
  border-bottom: 1px solid rgba(169, 184, 176, .18);
}

.page-home .league-item__name {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -.005em;
}

.page-home .league-item__meta {
  font-size: 12px;
  color: var(--mist);
}

.page-home .empty-state {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-top: 16px;
  padding: 18px 20px;
  border: 1px dashed rgba(228, 255, 77, .4);
  border-radius: var(--r-m);
}

.page-home .empty-state__title {
  font-size: 15px;
  font-weight: 700;
  color: var(--lemon);
}

.page-home .empty-state__hint {
  font-size: 13px;
  color: var(--mist);
}

/* ---------- 更新节奏（纸面） ---------- */
.page-home .rhythm {
  padding-block: var(--home-section);
}

.page-home .rhythm__panel {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(20px, 3vw, 36px);
  padding: clamp(22px, 3.4vw, 44px);
}

.page-home .rhythm__title {
  margin-top: 8px;
  font-size: clamp(24px, 3.2vw, 34px);
  line-height: 1.2;
  letter-spacing: -.02em;
  font-weight: 900;
}

.page-home .rhythm__text {
  margin-top: 10px;
  font-size: 15px;
  line-height: 1.72;
}

.page-home .rhythm__img {
  display: block;
  width: 100%;
  height: auto;
  margin-top: 18px;
  border-radius: var(--r-m);
  object-fit: cover;
}

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

.page-home .rhythm__item {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 13px 0;
  border-bottom: 1px solid rgba(11, 61, 46, .18);
}

.page-home .rhythm__item:first-child {
  border-top: 1px solid rgba(11, 61, 46, .18);
}

.page-home .rhythm__when {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .02em;
  color: #1E6B4F;
}

.page-home .rhythm__what {
  font-size: 14px;
  line-height: 1.7;
}

/* ---------- 四类用户路径 ---------- */
.page-home .paths {
  padding-block: var(--home-section);
}

.page-home .paths__title {
  font-size: clamp(24px, 3.2vw, 34px);
  line-height: 1.2;
  letter-spacing: -.02em;
  font-weight: 900;
}

.page-home .paths__lead {
  margin-top: 10px;
  max-width: 56ch;
  font-size: 15px;
  line-height: 1.72;
  color: var(--mist);
}

.page-home .paths__list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  margin: clamp(20px, 3vw, 34px) 0 0;
  padding: 0;
  list-style: none;
  counter-reset: path;
}

.page-home .path {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 22px 0 22px 0;
  border-top: 1px solid rgba(169, 184, 176, .22);
}

.page-home .path:last-child {
  border-bottom: 1px solid rgba(169, 184, 176, .22);
}

.page-home .path__idx {
  font-size: 13px;
  letter-spacing: .1em;
  color: var(--lemon);
}

.page-home .path__title {
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -.01em;
}

.page-home .path__text {
  font-size: 14px;
  line-height: 1.72;
  color: rgba(255, 255, 255, .8);
}

.page-home .path .link-underline {
  margin-top: 2px;
  align-self: flex-start;
}

/* ---------- 收束面板 ---------- */
.page-home .closing {
  padding-block: var(--home-section);
}

.page-home .closing__panel {
  position: relative;
  overflow: hidden;
  border-radius: var(--r-l);
  border: 1px solid rgba(228, 255, 77, .24);
  background: linear-gradient(168deg, rgba(30, 107, 79, .5), var(--pitch-deep) 68%);
  box-shadow: var(--shadow-2);
}

.page-home .closing__media {
  margin: 0;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.page-home .closing__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.55) brightness(.6);
}

.page-home .closing__body {
  padding: clamp(22px, 3.4vw, 42px);
}

.page-home .closing__title {
  margin-top: 10px;
  font-size: clamp(24px, 3.2vw, 34px);
  line-height: 1.2;
  letter-spacing: -.02em;
  font-weight: 900;
}

.page-home .closing__text {
  margin-top: 12px;
  max-width: 62ch;
  font-size: 15px;
  line-height: 1.76;
  color: rgba(255, 255, 255, .84);
}

.page-home .closing__contacts {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin: clamp(18px, 2.6vw, 28px) 0 0;
  padding: 0;
  list-style: none;
}

.page-home .closing__contact {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 12px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(169, 184, 176, .18);
}

.page-home .closing__note {
  margin-top: 12px;
}

.page-home .closing__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: clamp(18px, 2.6vw, 26px);
}

.page-home .closing__legal {
  margin: 0;
  padding: 14px clamp(22px, 3.4vw, 42px);
  border-top: 1px solid rgba(169, 184, 176, .2);
  font-size: 12px;
  letter-spacing: .04em;
  color: var(--mist);
}

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

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

@media (min-width: 900px) {
  .page-home .hero__grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.02fr);
    gap: clamp(32px, 4.6vw, 64px);
  }

  .page-home .hero__visual {
    aspect-ratio: 5 / 4;
    min-height: 460px;
  }

  .page-home .league-band {
    grid-template-columns: minmax(0, .76fr) minmax(0, 1.42fr);
    align-items: start;
  }

  .page-home .league-band__media {
    aspect-ratio: 3 / 4;
    position: sticky;
    top: calc(var(--header-h) + 18px);
  }

  .page-home .rhythm__panel {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
    align-items: start;
  }

  .page-home .paths__list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: clamp(22px, 3.4vw, 46px);
  }

  .page-home .path:nth-child(1),
  .page-home .path:nth-child(2) {
    border-top: 1px solid rgba(169, 184, 176, .22);
  }

  .page-home .closing__panel {
    display: grid;
    grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
    grid-template-rows: auto auto;
  }

  .page-home .closing__media {
    grid-row: 1 / 2;
    aspect-ratio: auto;
    height: 100%;
    min-height: 320px;
  }

  .page-home .closing__body {
    grid-column: 2 / 3;
    grid-row: 1 / 2;
  }

  .page-home .closing__legal {
    grid-column: 1 / -1;
    grid-row: 2 / 3;
  }
}

@media (min-width: 1040px) {
  .page-home .entries__grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .page-home .entries__grid > :nth-child(2) {
    margin-top: 26px;
  }

  .page-home .entries__grid > :nth-child(4) {
    margin-top: 15px;
  }
}

@media (min-width: 1180px) {
  .page-home .paths__list {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .page-home .path {
    border-bottom: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .page-home .hero__copy > * {
    animation: none;
  }

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