.page-home {
  --home-section-gap: clamp(3.6rem, 7.5vw, 7rem);
  --home-radius-cut: 32px;
  display: block;
  background: var(--sand);
  color: var(--ink);
  overflow-x: clip;
}

/* ============ 首屏 ============ */
.page-home .home-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: clamp(1.4rem, 3vw, 2.2rem) 0 clamp(4.5rem, 9vw, 7.5rem);
  background: linear-gradient(158deg, var(--ink-deep) 0%, var(--teal) 54%, var(--teal-mid) 100%);
  color: #fff;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 58px), 0 100%);
}

.page-home .home-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
}

.page-home .home-hero::before {
  content: "";
  position: absolute;
  top: -18%;
  right: -14%;
  z-index: 1;
  width: 68%;
  height: 152%;
  background: linear-gradient(198deg, var(--home) 0%, var(--home-deep) 56%, #6d1d05 100%);
  clip-path: polygon(32% 0, 100% 0, 100% 100%, 0 100%);
  opacity: 0.86;
  pointer-events: none;
}

.page-home .home-hero::after {
  content: "";
  position: absolute;
  left: -16%;
  bottom: -20%;
  z-index: 1;
  width: 54%;
  height: 64%;
  background: linear-gradient(26deg, var(--away) 0%, rgba(31, 99, 214, 0) 78%);
  clip-path: polygon(0 32%, 100% 0, 88% 100%, 0 100%);
  opacity: 0.52;
  pointer-events: none;
}

.page-home .home-hero__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(1.8rem, 4vw, 3rem);
}

.page-home .home-breadcrumb {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.76rem;
  letter-spacing: 0.1em;
  color: rgba(220, 239, 243, 0.68);
  padding-bottom: 0.4rem;
  border-bottom: 1px solid rgba(220, 239, 243, 0.16);
}

.page-home .home-hero h1 {
  margin: 0.55rem 0 1.15rem;
  font-size: clamp(1.95rem, 5.6vw, 4rem);
  line-height: 1.08;
  font-weight: 800;
  letter-spacing: -0.022em;
  max-width: 16em;
}

.page-home .eyebrow--light {
  color: rgba(220, 239, 243, 0.82);
}

.page-home .lede--light {
  margin: 0;
  max-width: 33em;
  font-size: clamp(1rem, 1.4vw, 1.1rem);
  line-height: 1.85;
  color: rgba(255, 255, 255, 0.85);
}

.page-home .home-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.9rem;
}

.page-home .home-hero__panel {
  padding: 0.9rem;
  background: rgba(11, 36, 41, 0.6);
  border-left: 3px solid var(--home);
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 26px), calc(100% - 26px) 100%, 0 100%);
}

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

.page-home .home-mapcard__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 0.7rem;
  margin-top: 0.95rem;
}

.page-home .home-mapcard__meta p {
  flex: 1 1 12rem;
  margin: 0;
  font-size: 0.86rem;
  line-height: 1.78;
  color: rgba(255, 255, 255, 0.78);
}

.page-home .home-track {
  grid-column: 1 / -1;
  position: relative;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 1.6rem;
  margin: clamp(2.4rem, 5vw, 4rem) 0 0;
  padding: 0;
  list-style: none;
}

.page-home .home-track::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0.42rem;
  height: 1px;
  background: linear-gradient(90deg, rgba(220, 239, 243, 0.52), rgba(220, 239, 243, 0.06));
}

.page-home .home-track__node {
  position: relative;
  flex: 1 1 8rem;
  padding-top: 1.45rem;
  font-size: 0.8rem;
  letter-spacing: 0.07em;
  color: rgba(220, 239, 243, 0.7);
}

.page-home .home-track__dot {
  position: absolute;
  top: 0.12rem;
  left: 0;
  width: 10px;
  height: 10px;
  background: var(--mist);
  transform: rotate(45deg);
}

.page-home .home-track__node.is-active {
  color: #fff;
}

.page-home .home-track__node.is-active .home-track__dot {
  background: var(--home);
  box-shadow: 0 0 0 5px rgba(255, 90, 31, 0.24);
}

@media (min-width: 980px) {
  .page-home .home-hero__inner {
    grid-template-columns: minmax(0, 1.16fr) minmax(0, 0.84fr);
    align-items: end;
  }
  .page-home .home-hero__lead {
    padding-bottom: 1rem;
  }
}

/* ============ 通用区块标题 ============ */
.page-home .home-head {
  position: relative;
  max-width: 46rem;
  margin-bottom: clamp(1.8rem, 4vw, 3rem);
}

.page-home .home-head h2 {
  margin: 0.45rem 0 0.9rem;
  font-size: clamp(1.55rem, 3.3vw, 2.55rem);
  line-height: 1.17;
  font-weight: 800;
  letter-spacing: -0.015em;
}

.page-home .home-head .prose {
  margin: 0;
  line-height: 1.85;
  color: rgba(20, 25, 28, 0.78);
}

.page-home .home-head--light h2 {
  color: #fff;
}

.page-home .prose--light {
  color: rgba(220, 239, 243, 0.82);
}

.page-home .section-marker {
  position: absolute;
  top: -1.6rem;
  right: 0;
  font-family: var(--font-mono);
  font-size: clamp(2.4rem, 6.5vw, 4.6rem);
  font-weight: 800;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(18, 69, 78, 0.22);
  transform: skewX(-6deg);
  pointer-events: none;
  user-select: none;
}

.page-home .home-head--light .section-marker {
  -webkit-text-stroke-color: rgba(220, 239, 243, 0.34);
}

.page-home .home-reports__body > .section-marker {
  position: static;
  display: block;
  margin-bottom: -0.4rem;
  transform: skewX(-6deg);
}

/* ============ 本轮赛程 ============ */
.page-home .home-fixtures {
  padding: var(--home-section-gap) 0;
  background: var(--sand);
}

.page-home .home-fixtures__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 1.8rem;
}

.page-home .home-fixtures__title {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.6rem;
  margin: 0 0 0.5rem;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--teal);
}

.page-home .home-fixtures__round {
  font-family: var(--font-mono);
  font-size: 0.66rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--teal-mid);
}

.page-home .home-fixtures__list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.page-home .fixture {
  display: grid;
  grid-template-columns: 5.2rem minmax(0, 1fr) minmax(0, 1fr);
  align-items: center;
  gap: 0.45rem;
  padding: 0.72rem 0.5rem 0.72rem 0.75rem;
  border-bottom: 1px solid rgba(18, 69, 78, 0.12);
  border-left: 3px solid rgba(30, 122, 140, 0.28);
  font-size: 0.92rem;
  transition: border-left-color 0.2s ease, background-color 0.2s ease;
}

.page-home .fixture:hover {
  border-left-color: var(--home);
  background: rgba(255, 90, 31, 0.05);
}

.page-home .fixture__time {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--teal-mid);
  white-space: nowrap;
}

.page-home .fixture__team {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  min-width: 0;
  font-weight: 600;
  color: var(--ink);
}

.page-home .fixture__team--away {
  justify-content: flex-end;
  text-align: right;
}

.page-home .fixture__team .tag {
  flex: none;
}

.page-home .home-fixtures__more {
  margin: clamp(2rem, 4vw, 2.8rem) 0 0;
}

@media (min-width: 880px) {
  .page-home .home-fixtures__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 2rem;
  }
}

/* ============ 主场地图 ============ */
.page-home .home-map {
  padding: var(--home-section-gap) 0;
  background:
    radial-gradient(120% 78% at 88% 0%, rgba(30, 122, 140, 0.18), transparent 62%),
    linear-gradient(180deg, var(--mist) 0%, rgba(251, 245, 234, 0.85) 100%);
}

.page-home .home-map__layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 1.8rem;
}

.page-home .home-map__figure {
  position: relative;
  margin: 0;
  overflow: hidden;
  background: var(--teal);
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - var(--home-radius-cut)), calc(100% - var(--home-radius-cut)) 100%, 0 100%);
  box-shadow: var(--shadow-panel);
}

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

.page-home .home-map__pin {
  position: absolute;
  width: 1.5rem;
  height: 1.5rem;
  transform: translate(-50%, -50%);
  cursor: pointer;
  outline: none;
}

.page-home .home-map__dot {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: rgba(255, 90, 31, 0.92);
  box-shadow: 0 0 0 5px rgba(255, 90, 31, 0.24), 0 0 0 1px rgba(255, 255, 255, 0.6) inset;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.page-home .home-map__pin:hover .home-map__dot,
.page-home .home-map__pin:focus-visible .home-map__dot {
  transform: scale(1.18);
  box-shadow: 0 0 0 9px rgba(255, 90, 31, 0.2), 0 0 0 1px rgba(255, 255, 255, 0.7) inset;
}

.page-home .pin-card {
  position: absolute;
  left: 50%;
  bottom: calc(100% + 0.7rem);
  z-index: 4;
  width: 15rem;
  max-width: 68vw;
  display: flex;
  flex-direction: column;
  gap: 0.28rem;
  padding: 0.9rem 1rem;
  background: var(--ink-deep);
  color: #fff;
  border-top: 3px solid var(--home);
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 14px), calc(100% - 14px) 100%, 0 100%);
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, 0.5rem);
  transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s;
  box-shadow: var(--shadow-panel);
  pointer-events: none;
}

.page-home .home-map__pin:hover .pin-card,
.page-home .home-map__pin:focus-visible .pin-card {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}

.page-home .pin-card strong {
  font-size: 0.95rem;
  font-weight: 700;
}

.page-home .pin-card em {
  font-family: var(--font-mono);
  font-style: normal;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--sand-mid);
  line-height: 1.2;
}

.page-home .pin-card span {
  font-size: 0.78rem;
  line-height: 1.6;
  color: rgba(220, 239, 243, 0.82);
}

.page-home .home-map__caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 0.75rem 1rem;
  font-size: 0.78rem;
  letter-spacing: 0.03em;
  color: rgba(255, 255, 255, 0.92);
  background: linear-gradient(0deg, rgba(11, 36, 41, 0.88), rgba(11, 36, 41, 0));
}

.page-home .home-map__side {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

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

.page-home .home-map__facts li {
  display: grid;
  grid-template-columns: 4.6rem minmax(0, 1fr);
  align-items: baseline;
  gap: 0.8rem;
  padding: 1rem 0;
  border-top: 1px solid rgba(18, 69, 78, 0.16);
}

.page-home .home-map__facts li:last-child {
  border-bottom: 1px solid rgba(18, 69, 78, 0.16);
}

.page-home .home-map__facts strong {
  font-family: var(--font-mono);
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 800;
  line-height: 1;
  color: var(--home);
  letter-spacing: -0.03em;
}

.page-home .home-map__facts span {
  font-size: 0.9rem;
  line-height: 1.72;
  color: rgba(20, 25, 28, 0.8);
}

.page-home .home-map__note {
  margin: 0;
  padding-left: 1rem;
  border-left: 3px solid var(--sand-mid);
  font-size: 0.88rem;
  line-height: 1.8;
  color: rgba(20, 25, 28, 0.72);
}

@media (min-width: 920px) {
  .page-home .home-map__layout {
    grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr);
    gap: 2.5rem;
    align-items: start;
  }
}

/* ============ 积分区间 ============ */
.page-home .home-zones {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: var(--home-section-gap) 0;
  background: linear-gradient(155deg, var(--ink-deep) 0%, var(--teal) 62%, var(--teal-mid) 100%);
  color: #fff;
}

.page-home .home-zones__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.2;
}

.page-home .home-zones > .shell {
  position: relative;
  z-index: 1;
}

.page-home .home-zones__bands {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 0.75rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.page-home .zone {
  padding: 1.05rem 1.1rem 1.25rem;
  background: rgba(255, 255, 255, 0.055);
  border-top: 5px solid var(--zone-color, var(--mist));
}

.page-home .zone--title {
  --zone-color: var(--up);
}

.page-home .zone--acl {
  --zone-color: var(--away);
}

.page-home .zone--playoff {
  --zone-color: var(--warn);
}

.page-home .zone--drop {
  --zone-color: var(--home);
}

.page-home .zone__name {
  display: block;
  margin-bottom: 0.5rem;
  font-size: 0.98rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--zone-color);
}

.page-home .zone p {
  margin: 0;
  font-size: 0.85rem;
  line-height: 1.75;
  color: rgba(220, 239, 243, 0.82);
}

.page-home .home-zones__figure {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  gap: 1rem 1.8rem;
  margin-top: clamp(2.2rem, 4.4vw, 3.4rem);
  padding-top: clamp(1.4rem, 3vw, 2rem);
  border-top: 1px solid rgba(220, 239, 243, 0.2);
}

.page-home .home-zones__figure .stat-figure {
  margin: 0;
  font-family: var(--font-mono);
  font-size: clamp(4.4rem, 13vw, 9.5rem);
  font-weight: 800;
  line-height: 0.82;
  letter-spacing: -0.05em;
  color: var(--warn);
}

.page-home .home-zones__figure-note {
  flex: 1 1 18rem;
  margin: 0;
  max-width: 34em;
  font-size: 0.95rem;
  line-height: 1.85;
  color: rgba(220, 239, 243, 0.86);
}

.page-home .home-zones__rules {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
  margin-top: clamp(1.8rem, 3.5vw, 2.6rem);
}

.page-home .home-zones__rules p {
  flex: 1 1 22rem;
  margin: 0;
  max-width: 40em;
  font-size: 0.9rem;
  line-height: 1.85;
  color: rgba(220, 239, 243, 0.78);
}

@media (min-width: 780px) {
  .page-home .home-zones__bands {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0;
  }
  .page-home .zone {
    background: rgba(255, 255, 255, 0.04);
    border-right: 1px solid rgba(220, 239, 243, 0.12);
  }
  .page-home .zone:last-child {
    border-right: 0;
  }
}

/* ============ 最新战报 ============ */
.page-home .home-reports {
  padding: var(--home-section-gap) 0;
  background: var(--sand);
}

.page-home .home-reports__layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 2rem;
}

.page-home .home-reports__figure {
  position: relative;
  margin: 0;
  overflow: hidden;
  background: var(--teal);
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 30px), calc(100% - 30px) 100%, 0 100%);
}

.page-home .home-reports__figure img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.page-home .home-reports__figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 0.7rem 0.9rem;
  font-size: 0.76rem;
  color: rgba(255, 255, 255, 0.92);
  background: linear-gradient(0deg, rgba(11, 36, 41, 0.86), rgba(11, 36, 41, 0));
}

.page-home .home-reports__body h2 {
  margin: 0.45rem 0 1.6rem;
  font-size: clamp(1.55rem, 3.3vw, 2.5rem);
  line-height: 1.17;
  font-weight: 800;
  letter-spacing: -0.015em;
}

.page-home .home-reports__list {
  margin: 0 0 1.8rem;
  padding: 0;
  list-style: none;
}

.page-home .report {
  position: relative;
  padding: 1.15rem 0 1.15rem 3.1rem;
  border-top: 1px solid rgba(18, 69, 78, 0.16);
}

.page-home .report:last-child {
  border-bottom: 1px solid rgba(18, 69, 78, 0.16);
}

.page-home .report__no {
  position: absolute;
  left: 0;
  top: 1.25rem;
  font-family: var(--font-mono);
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--home);
}

.page-home .report h3 {
  margin: 0 0 0.5rem;
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.55;
  color: var(--ink);
}

.page-home .report p {
  margin: 0 0 0.7rem;
  max-width: 40em;
  font-size: 0.9rem;
  line-height: 1.8;
  color: rgba(20, 25, 28, 0.74);
}

@media (min-width: 900px) {
  .page-home .home-reports__layout {
    grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.42fr);
    gap: 3.2rem;
    align-items: start;
  }
}

/* ============ 订阅与回看 ============ */
.page-home .home-subscribe {
  padding: var(--home-section-gap) 0;
  background: linear-gradient(180deg, var(--sand) 0%, rgba(231, 207, 169, 0.6) 100%);
}

.page-home .home-subscribe__tiers {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 1rem;
}

.page-home .tier {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  padding: 1.35rem 1.15rem 1.5rem;
  background: #fff;
  border-top: 4px solid var(--tier-color, var(--teal-mid));
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 20px), calc(100% - 20px) 100%, 0 100%);
  box-shadow: var(--shadow-soft);
}

.page-home .tier--top {
  --tier-color: var(--up);
}

.page-home .tier--second {
  --tier-color: var(--away);
}

.page-home .tier--youth {
  --tier-color: var(--teal-mid);
}

.page-home .tier--friendly {
  --tier-color: var(--warn);
}

.page-home .tier h3 {
  margin: 0;
  font-size: 1.02rem;
  font-weight: 700;
  color: var(--ink);
}

.page-home .tier p {
  margin: 0;
  flex: 1;
  font-size: 0.86rem;
  line-height: 1.8;
  color: rgba(20, 25, 28, 0.74);
}

.page-home .tier__tag {
  align-self: flex-start;
  font-family: var(--font-mono);
  font-size: 0.66rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--teal);
  padding: 0.2rem 0.5rem;
  background: rgba(30, 122, 140, 0.12);
  clip-path: polygon(5px 0, 100% 0, calc(100% - 5px) 100%, 0 100%);
}

.page-home .home-subscribe__replay {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.2rem 2rem;
  margin-top: clamp(2rem, 4vw, 3rem);
  padding: clamp(1.4rem, 3vw, 2.2rem);
  background: linear-gradient(120deg, var(--teal) 0%, var(--ink-deep) 100%);
  color: #fff;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 28px), calc(100% - 28px) 100%, 0 100%);
}

.page-home .home-subscribe__replay .stat-figure {
  margin: 0;
  font-family: var(--font-mono);
  font-size: clamp(3.4rem, 9vw, 6rem);
  font-weight: 800;
  line-height: 0.85;
  letter-spacing: -0.045em;
  color: var(--home);
}

.page-home .home-subscribe__replay-body {
  flex: 1 1 20rem;
}

.page-home .home-subscribe__replay-body > p {
  margin: 0 0 1.1rem;
  max-width: 40em;
  font-size: 0.94rem;
  line-height: 1.85;
  color: rgba(220, 239, 243, 0.86);
}

.page-home .home-subscribe__replay-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

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

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

/* ============ 收尾信任条 ============ */
.page-home .home-trust {
  padding: clamp(2.4rem, 5vw, 3.6rem) 0;
  background: var(--ink-deep);
  color: #fff;
}

.page-home .home-trust__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.4rem 2.4rem;
}

.page-home .home-trust p {
  flex: 1 1 24rem;
  margin: 0;
  max-width: 46em;
  font-size: 0.95rem;
  line-height: 1.9;
  color: rgba(220, 239, 243, 0.84);
}

.page-home .home-trust__links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

/* ============ 窄屏微调 ============ */
@media (max-width: 520px) {
  .page-home .fixture {
    grid-template-columns: 4.6rem minmax(0, 1fr) minmax(0, 1fr);
    padding-left: 0.5rem;
  }
  .page-home .fixture__time {
    font-size: 0.72rem;
  }
  .page-home .fixture__team {
    font-size: 0.85rem;
  }
  .page-home .home-map__facts li {
    grid-template-columns: 3.6rem minmax(0, 1fr);
  }
  .page-home .home-hero__panel {
    padding: 0.7rem;
  }
}
<<<END>>>
