.page-home {
  --home-cut: 18px;
  --home-gap: clamp(18px, 3.2vw, 32px);
  display: block;
  background: var(--night);
  color: var(--white);
  font-family: var(--font-sans);
  line-height: 1.75;
}

/* ---------- 面包屑上下文 ---------- */
.page-home .home-context {
  padding-top: clamp(16px, 3vw, 26px);
  padding-bottom: 10px;
}
.page-home .crumbs {
  font-size: var(--step-1);
  color: var(--slate);
}
.page-home .crumbs ol {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}
.page-home .crumbs li {
  display: inline-flex;
  align-items: center;
}
.page-home .crumbs li + li::before {
  content: "／";
  margin: 0 8px;
  color: var(--teal);
}
.page-home .crumbs a {
  color: var(--paper);
  text-decoration: none;
  border-bottom: 1px solid var(--line-dark);
}
.page-home .crumbs a:hover,
.page-home .crumbs a:focus-visible {
  color: var(--teal);
}
.page-home .crumbs li[aria-current="page"] {
  color: var(--gold);
  font-weight: 700;
}

/* ---------- 首屏 ---------- */
.page-home .home-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: var(--night);
  padding: clamp(26px, 4.6vw, 52px) 0 0;
}
.page-home .home-hero__media {
  position: absolute;
  inset: 0;
  z-index: -2;
}
.page-home .home-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 68% 50%;
}
.page-home .home-hero__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(120% 96% at 88% 6%, rgba(23, 195, 166, 0.26), transparent 62%),
    linear-gradient(158deg, rgba(11, 26, 46, 0.97) 0%, rgba(11, 26, 46, 0.82) 44%, rgba(11, 26, 46, 0.5) 100%);
}
.page-home .home-hero__inner {
  position: relative;
  padding-bottom: clamp(34px, 6vw, 68px);
}
.page-home .home-hero__copy {
  max-width: 44rem;
}
.page-home .home-hero .eyebrow {
  color: var(--teal);
  font-size: var(--step-1);
  letter-spacing: 0.16em;
}
.page-home .home-hero h1 {
  margin: 12px 0 18px;
  font-size: clamp(2rem, 6.4vw, 4.4rem);
  font-weight: 900;
  line-height: 1.06;
  letter-spacing: -0.02em;
  color: var(--white);
}
.page-home .home-hero__lead {
  margin: 0 0 28px;
  max-width: 34em;
  font-size: clamp(1rem, 2.2vw, 1.25rem);
  line-height: 1.85;
  color: rgba(255, 253, 247, 0.8);
}
.page-home .home-hero__entries {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.page-home .btn--quiet {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border: 0;
  background: rgba(243, 233, 214, 0.1);
  box-shadow: inset 0 0 0 1px rgba(243, 233, 214, 0.42);
  color: var(--paper);
  font-family: var(--font-sans);
  font-size: var(--step-2);
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  clip-path: polygon(10px 0, 100% 0, calc(100% - 10px) 100%, 0 100%);
  transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}
.page-home .btn--quiet:hover,
.page-home .btn--quiet:focus-visible {
  background: var(--paper);
  color: var(--night);
  transform: translateY(-2px);
}

.page-home .home-hero__stats {
  position: relative;
  background: var(--paper);
  color: var(--ink);
  clip-path: polygon(0 20px, 100% 0, 100% 100%, 0 100%);
  padding: clamp(30px, 5vw, 48px) 0 clamp(28px, 4vw, 40px);
}
.page-home .home-stats {
  display: grid;
  gap: clamp(20px, 3.2vw, 34px);
  grid-template-columns: 1fr;
}
.page-home .home-stat {
  border-left: 3px solid var(--teal);
  padding-left: 16px;
}
.page-home .home-stat:nth-child(2) {
  border-left-color: var(--gold);
}
.page-home .home-stat:nth-child(3) {
  border-left-color: var(--red);
}
.page-home .home-stat__value {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin: 0;
  font-family: var(--font-mono);
  font-size: clamp(2.6rem, 9vw, 4.5rem);
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.02em;
  color: var(--night);
}
.page-home .home-stat__unit {
  font-family: var(--font-sans);
  font-size: clamp(0.9rem, 2vw, 1.15rem);
  font-weight: 700;
  color: var(--slate);
}
.page-home .home-stat__label {
  margin: 12px 0 0;
  font-size: var(--step-2);
  font-weight: 500;
  color: var(--ink);
}

/* ---------- 章节通用 ---------- */
.page-home .home-passes,
.page-home .home-form,
.page-home .home-map {
  background: var(--paper);
  color: var(--ink);
  padding: clamp(48px, 8vw, 96px) 0;
}
.page-home .home-fixtures,
.page-home .home-away,
.page-home .home-serve {
  background: var(--night);
  color: var(--white);
  padding: clamp(48px, 8vw, 96px) 0;
}
.page-home .home-head {
  max-width: 46rem;
  margin-bottom: clamp(24px, 4vw, 42px);
}
.page-home .home-head h2 {
  margin: 10px 0 14px;
  font-size: clamp(1.6rem, 4.4vw, 2.85rem);
  font-weight: 900;
  line-height: 1.14;
  letter-spacing: -0.02em;
  color: var(--night);
}
.page-home .home-head__lead {
  margin: 0;
  font-size: clamp(1rem, 2.1vw, 1.2rem);
  line-height: 1.8;
  color: var(--slate);
}
.page-home .home-head .eyebrow {
  color: var(--teal-deep);
  font-size: var(--step-1);
  letter-spacing: 0.16em;
}
.page-home .home-head--dark h2 {
  color: var(--white);
}
.page-home .home-head--dark .eyebrow {
  color: var(--teal);
}
.page-home .home-head--dark .home-head__lead {
  color: rgba(255, 253, 247, 0.74);
}

/* ---------- 季票三选一 ---------- */
.page-home .home-passes__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--home-gap);
  margin-bottom: clamp(30px, 4.4vw, 52px);
}
.page-home .home-pass {
  position: relative;
  background: var(--white);
  border: 1px solid var(--line-light);
  border-top: 4px solid var(--teal);
  padding: clamp(22px, 3vw, 32px);
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 18px), calc(100% - 18px) 100%, 0 100%);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.page-home .home-pass:nth-child(2) {
  border-top-color: var(--gold);
}
.page-home .home-pass:nth-child(3) {
  border-top-color: var(--red);
}
.page-home .home-pass:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card);
}
.page-home .home-pass__index {
  margin: 0 0 12px;
  font-size: var(--step-1);
  letter-spacing: 0.16em;
  color: var(--slate);
}
.page-home .home-pass h3 {
  margin: 0 0 8px;
  font-size: var(--step-4);
  font-weight: 900;
  color: var(--night);
  letter-spacing: -0.01em;
}
.page-home .home-pass__for {
  margin: 0 0 18px;
  font-size: var(--step-2);
  font-weight: 700;
  color: var(--teal-deep);
}
.page-home .home-pass__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}
.page-home .home-pass__list li {
  position: relative;
  padding-left: 18px;
  font-size: var(--step-2);
  color: var(--ink);
}
.page-home .home-pass__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 8px;
  height: 8px;
  background: var(--teal);
  transform: rotate(45deg);
}
.page-home .home-passes__figure {
  margin: 0;
  max-width: 760px;
}

/* ---------- 赛程轴 ---------- */
.page-home .home-track {
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding: 6px 0 20px;
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
  background: linear-gradient(180deg, rgba(23, 195, 166, 0.07), rgba(23, 195, 166, 0) 62%);
}
.page-home .home-track:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 4px;
}
.page-home .home-track__list {
  display: flex;
  margin: 0;
  padding: 0 clamp(16px, 4vw, 40px);
  list-style: none;
  min-width: max-content;
}
.page-home .home-track__item {
  position: relative;
  flex: 0 0 clamp(186px, 52vw, 238px);
  padding: 26px 22px 26px 30px;
  border-right: 1px dashed var(--line-dark);
  scroll-snap-align: start;
  transition: background-color 0.2s ease;
}
.page-home .home-track__item::before {
  content: "";
  position: absolute;
  left: 8px;
  top: 42px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--slate);
  transition: transform 0.2s ease, background-color 0.2s ease;
}
.page-home .home-track__item:hover::before {
  transform: scale(1.08);
  background: var(--teal);
}
.page-home .home-track__item.is-now {
  background: rgba(23, 195, 166, 0.08);
}
.page-home .home-track__item.is-now::before {
  background: var(--teal);
  box-shadow: 0 0 0 5px rgba(23, 195, 166, 0.22);
}
.page-home .home-track__round {
  margin: 0 0 12px;
  font-size: var(--step-1);
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--teal);
}
.page-home .home-track__time {
  margin: 0 0 12px;
  font-family: var(--font-mono);
  font-size: clamp(1.25rem, 3vw, 1.7rem);
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--white);
}
.page-home .home-track__tag {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  font-size: var(--step-1);
  color: rgba(255, 253, 247, 0.68);
}
.page-home .home-track__dot {
  width: 7px;
  height: 7px;
  flex: none;
  transform: rotate(45deg);
  background: var(--sky);
}
.page-home .home-track__item.is-home .home-track__dot {
  background: var(--teal);
}
.page-home .home-track__item.is-away .home-track__dot {
  background: var(--gold);
}
.page-home .home-track__foot {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
  margin-top: clamp(22px, 3vw, 32px);
}
.page-home .home-track__foot p {
  margin: 0;
  max-width: 36em;
  font-size: var(--step-2);
  color: rgba(255, 253, 247, 0.7);
}

/* ---------- 近期战绩 ---------- */
.page-home .home-form__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(26px, 4vw, 48px);
  align-items: start;
}
.page-home .home-form__copy p {
  margin: 0 0 26px;
  font-size: clamp(1rem, 2.1vw, 1.2rem);
  line-height: 1.8;
  color: var(--ink);
}
.page-home .home-form__cards {
  display: grid;
  gap: 14px;
}
.page-home .home-card {
  background: var(--white);
  border-top: 1px solid var(--line-light);
  border-right: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
  border-left: 4px solid var(--teal-deep);
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 16px), calc(100% - 16px) 100%, 0 100%);
}
.page-home .home-card[open] {
  border-left-color: var(--gold);
}
.page-home .home-card summary {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 20px 24px;
  list-style: none;
  cursor: pointer;
  font-size: var(--step-3);
  font-weight: 700;
  color: var(--night);
}
.page-home .home-card summary::-webkit-details-marker {
  display: none;
}
.page-home .home-card summary::before {
  content: "";
  width: 10px;
  height: 10px;
  flex: none;
  background: var(--teal-deep);
  transform: rotate(45deg);
  transition: transform 0.2s ease, background-color 0.2s ease;
}
.page-home .home-card[open] summary::before {
  background: var(--gold);
  transform: rotate(135deg);
}
.page-home .home-card summary:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: -4px;
}
.page-home .home-card p {
  margin: 0;
  padding: 0 24px 22px;
  font-size: var(--step-2);
  line-height: 1.8;
  color: var(--ink);
}

/* ---------- 客场样本 ---------- */
.page-home .home-away .tag-group {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: clamp(22px, 3vw, 34px);
}
.page-home .home-away .tag {
  padding: 9px 18px;
  border: 1px solid rgba(243, 233, 214, 0.28);
  background: transparent;
  color: var(--paper);
  font-family: var(--font-sans);
  font-size: var(--step-2);
  font-weight: 700;
  cursor: pointer;
  clip-path: polygon(8px 0, 100% 0, calc(100% - 8px) 100%, 0 100%);
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.page-home .home-away .tag[aria-pressed="true"] {
  background: var(--teal);
  border-color: var(--teal);
  color: var(--night);
}
.page-home .home-away .tag:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}
.page-home .home-layers {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--home-gap);
  margin: 0 0 26px;
  padding: 0;
  list-style: none;
}
.page-home .home-layer {
  padding: 26px 24px 26px 28px;
  background: rgba(255, 253, 247, 0.05);
  border-top: 2px solid var(--teal);
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 18px), calc(100% - 18px) 100%, 0 100%);
}
.page-home .home-layer:nth-child(2) {
  border-top-color: var(--gold);
}
.page-home .home-layer:nth-child(3) {
  border-top-color: var(--red);
}
.page-home .home-layer h3 {
  margin: 0 0 10px;
  font-size: var(--step-3);
  font-weight: 900;
  color: var(--white);
}
.page-home .home-layer p {
  margin: 0;
  font-size: var(--step-2);
  line-height: 1.8;
  color: rgba(255, 253, 247, 0.74);
}
.page-home .home-away__note {
  margin: 0 0 24px;
  font-size: var(--step-2);
  font-weight: 700;
  color: var(--gold);
}

/* ---------- 主场地图与球迷组织 ---------- */
.page-home .home-map__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(26px, 4vw, 48px);
  align-items: start;
}
.page-home .home-map__figure {
  margin: 0;
}
.page-home .home-map__copy p {
  margin: 0 0 24px;
  font-size: clamp(1rem, 2.1vw, 1.2rem);
  line-height: 1.8;
  color: var(--ink);
}
.page-home .home-bars {
  display: grid;
  gap: 18px;
  margin: 0 0 24px;
  padding: 0;
  list-style: none;
}
.page-home .home-bar {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  grid-template-areas:
    "label value"
    "track track";
  gap: 8px 12px;
  align-items: center;
}
.page-home .home-bar__label {
  grid-area: label;
  font-size: var(--step-2);
  font-weight: 500;
  color: var(--ink);
}
.page-home .home-bar__val {
  grid-area: value;
  font-size: var(--step-3);
  font-weight: 500;
  color: var(--night);
  text-align: right;
}
.page-home .home-bar__track {
  grid-area: track;
  display: block;
  height: 12px;
  background: rgba(11, 26, 46, 0.09);
}
.page-home .home-bar__fill {
  display: block;
  height: 100%;
  width: var(--w, 0%);
  background: linear-gradient(90deg, var(--teal), var(--teal-deep));
  transition: width 0.4s ease;
}
.page-home .home-bar:nth-child(2) .home-bar__fill {
  background: linear-gradient(90deg, var(--gold), #cf9727);
}
.page-home .home-bar:nth-child(3) .home-bar__fill {
  background: linear-gradient(90deg, var(--red), #7c322b);
}
.page-home .home-map__note {
  margin: 0 0 26px;
  font-size: var(--step-2);
  line-height: 1.8;
  color: var(--slate);
}

/* ---------- 服务入口 ---------- */
.page-home .home-serve__list {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--home-gap);
  margin: 0;
  padding: 0;
  list-style: none;
}
.page-home .home-serve__item {
  padding: 24px 22px;
  border: 1px solid var(--line-dark);
  border-top: 2px solid var(--teal);
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 16px), calc(100% - 16px) 100%, 0 100%);
  transition: background-color 0.2s ease, transform 0.2s ease;
}
.page-home .home-serve__item:hover {
  background: rgba(23, 195, 166, 0.08);
  transform: translateY(-4px);
}
.page-home .home-serve__item h3 {
  margin: 0 0 10px;
  font-size: var(--step-3);
  font-weight: 900;
}
.page-home .home-serve__item h3 a {
  color: var(--white);
  text-decoration: none;
}
.page-home .home-serve__item h3 a::after {
  content: " →";
  color: var(--teal);
}
.page-home .home-serve__item h3 a:hover,
.page-home .home-serve__item h3 a:focus-visible {
  color: var(--teal);
}
.page-home .home-serve__item p {
  margin: 0;
  font-size: var(--step-2);
  line-height: 1.8;
  color: rgba(255, 253, 247, 0.72);
}

/* ---------- 收束条带 ---------- */
.page-home .home-close {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: flex;
  align-items: center;
  min-height: 300px;
  background: var(--ink);
  padding: clamp(56px, 9vw, 104px) 0;
}
.page-home .home-close__media {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 60%;
}
.page-home .home-close::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(112deg, rgba(11, 26, 46, 0.95) 0%, rgba(11, 26, 46, 0.66) 54%, rgba(11, 26, 46, 0.34) 100%);
}
.page-home .home-close__inner h2 {
  margin: 0 0 14px;
  font-size: clamp(1.6rem, 4.4vw, 2.85rem);
  font-weight: 900;
  line-height: 1.14;
  letter-spacing: -0.02em;
  color: var(--white);
}
.page-home .home-close__inner p {
  margin: 0 0 28px;
  max-width: 38em;
  font-size: clamp(1rem, 2.1vw, 1.2rem);
  line-height: 1.8;
  color: rgba(255, 253, 247, 0.78);
}

/* ---------- 断点 ---------- */
@media (min-width: 560px) {
  .page-home .home-bar {
    grid-template-columns: 9em minmax(0, 1fr) 3.4em;
    grid-template-areas: "label track value";
  }
  .page-home .home-bar__val {
    text-align: right;
  }
}

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

@media (min-width: 900px) {
  .page-home .home-form__grid {
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
    gap: clamp(32px, 5vw, 64px);
  }
  .page-home .home-map__grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  }
  .page-home .home-hero__copy {
    max-width: 40rem;
  }
}

@media (min-width: 1080px) {
  .page-home .home-serve__list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .page-home .home-hero__media img {
    object-position: 72% 50%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .page-home .home-pass,
  .page-home .home-serve__item,
  .page-home .btn--quiet {
    transition: opacity 0.2s ease;
  }
  .page-home .home-pass:hover,
  .page-home .home-serve__item:hover,
  .page-home .btn--quiet:hover {
    transform: none;
  }
  .page-home .home-track__item:hover::before {
    transform: none;
  }
}
</main>

.page-home {
  --w: 1rem;
}
