.page-home {
  background: var(--ink);
  color: var(--white);
  font-family: var(--font-body);
  overflow-x: hidden;
}

.page-home .crumbs {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 96px var(--pad-x-sm) 4px;
  font-size: 12px;
  letter-spacing: 0.1em;
}

.page-home .crumbs ol {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 0;
  padding: 0;
  list-style: none;
  color: var(--mist);
}

.page-home .crumbs li + li::before {
  content: "/";
  margin-right: 8px;
  color: var(--mist);
  opacity: 0.6;
}

.page-home .crumbs a {
  color: var(--mist);
  text-decoration: none;
}

.page-home .crumbs a:hover {
  color: var(--lime);
}

.page-home .text-link {
  display: inline-block;
  color: var(--lime);
  font-size: 14px;
  letter-spacing: 0.04em;
  text-decoration: none;
  border-bottom: 1px solid var(--deep);
  padding-bottom: 3px;
  transition: border-color 0.25s ease, color 0.25s ease;
}

.page-home .text-link:hover {
  color: var(--lime-soft);
  border-color: var(--lime);
}

/* ================= 首屏 ================= */

.page-home .hero {
  position: relative;
  isolation: isolate;
  padding: 16px 0 64px;
  overflow: hidden;
}

.page-home .hero__bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.35;
  filter: saturate(0.65) contrast(1.05);
}

.page-home .hero__veil {
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(180deg, rgba(6, 17, 13, 0.78) 0%, rgba(6, 17, 13, 0.94) 62%, var(--ink) 100%),
    repeating-linear-gradient(90deg, rgba(198, 205, 211, 0.07) 0 1px, transparent 1px 68px),
    repeating-linear-gradient(0deg, rgba(198, 205, 211, 0.07) 0 1px, transparent 1px 68px);
}

.page-home .hero__grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  padding-top: 16px;
}

.page-home .hero__left {
  max-width: 620px;
}

.page-home .hero__title {
  margin: 12px 0 16px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2rem, 8.5vw, 3.5rem);
  line-height: 1.02;
  letter-spacing: -0.02em;
}

.page-home .hero__lead {
  margin: 0;
  max-width: 56ch;
  color: var(--mist);
  font-size: 16px;
  line-height: 1.8;
}

.page-home .hero__stamp {
  display: flex;
  align-items: flex-end;
  gap: 14px;
  margin: 30px 0 20px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--grid);
}

.page-home .hero__stamp-num {
  font-family: var(--font-data);
  font-variant-numeric: tabular-nums;
  font-size: clamp(3.2rem, 16vw, 6.4rem);
  font-weight: 500;
  line-height: 0.86;
  letter-spacing: -0.04em;
  color: var(--lime);
  text-shadow: 0 0 26px rgba(200, 255, 61, 0.35);
}

.page-home .hero__stamp-label {
  font-size: 12px;
  letter-spacing: 0.16em;
  color: var(--mist);
  padding-bottom: 8px;
}

.page-home .hero__seasons {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin: 0;
  flex-wrap: wrap;
}

.page-home .hero__seasons-value {
  font-size: 15px;
  letter-spacing: 0.08em;
  color: var(--silver);
}

.page-home .hero__panel {
  position: relative;
  padding: 22px 18px 24px;
  background: linear-gradient(160deg, rgba(12, 31, 23, 0.94), rgba(6, 17, 13, 0.96));
  border: 1px solid var(--grid);
  border-left: 3px solid var(--lime);
}

.page-home .hero__panel::after {
  content: "";
  position: absolute;
  right: -1px;
  top: -1px;
  width: 46px;
  height: 46px;
  border-top: 1px solid var(--silver);
  opacity: 0.5;
  pointer-events: none;
}

.page-home .hero__panel-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--grid);
}

.page-home .hero__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin: 18px 0 18px;
  padding: 1px;
  list-style: none;
  background: var(--grid);
}

.page-home .hero__stats li {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 14px 10px;
  background: var(--ink-2);
}

.page-home .hero__stat-num {
  font-size: clamp(1.5rem, 6vw, 2.1rem);
  line-height: 1;
  color: var(--white);
  letter-spacing: -0.02em;
}

.page-home .hero__stat-cap {
  font-size: 12px;
  line-height: 1.4;
  color: var(--mist);
}

.page-home .hero__panel-note {
  margin: 0 0 20px;
  font-size: 13px;
  line-height: 1.7;
  color: var(--mist);
}

.page-home .hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

/* ================= 通用区块头 ================= */

.page-home .section-head {
  margin-bottom: 34px;
  max-width: 760px;
}

.page-home .section-head__num {
  margin: 0;
  font-family: var(--font-data);
  font-size: 12px;
  letter-spacing: 0.16em;
  color: var(--lime);
}

.page-home .section-head__title {
  margin: 12px 0 14px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.45rem, 5vw, 2.3rem);
  line-height: 1.16;
  letter-spacing: -0.015em;
}

.page-home .section-head__lead {
  margin: 0;
  max-width: 56ch;
  color: var(--mist);
  font-size: 15px;
  line-height: 1.85;
}

.page-home .media {
  position: relative;
  margin: 0;
  overflow: hidden;
  background: var(--grid);
  border: 1px solid var(--grid);
}

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

.page-home .media__caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  margin: 0;
  padding: 12px 14px;
  font-size: 12px;
  line-height: 1.6;
  color: var(--mist);
  background: linear-gradient(180deg, rgba(6, 17, 13, 0), rgba(6, 17, 13, 0.92));
}

/* ================= 主客场表现 ================= */

.page-home .ha {
  position: relative;
  padding: 68px 0 72px;
  background: var(--ink-2);
}

.page-home .ha::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, var(--lime) 0%, var(--grid) 38%, rgba(18, 46, 34, 0) 100%);
}

.page-home .ha__body {
  display: grid;
  grid-template-columns: 1fr;
  gap: 26px;
}

.page-home .ha__media {
  aspect-ratio: 16 / 9;
}

.page-home .ha__meta {
  display: flex;
  align-items: baseline;
  gap: 12px;
  flex-wrap: wrap;
  margin: 0 0 14px;
}

.page-home .ha__meta-value {
  font-family: var(--font-data);
  font-size: 13px;
  letter-spacing: 0.06em;
  color: var(--silver);
}

.page-home .table-scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-top: 1px solid var(--silver);
}

.page-home .data-table {
  width: 100%;
  min-width: 560px;
  border-collapse: collapse;
  font-size: 14px;
}

.page-home .data-table th,
.page-home .data-table td {
  padding: 12px 10px;
  text-align: left;
  border-bottom: 1px solid var(--grid);
}

.page-home .data-table thead th {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--mist);
  white-space: nowrap;
}

.page-home .data-table tbody th {
  font-weight: 500;
  color: var(--white);
  white-space: nowrap;
}

.page-home .data-table tbody tr:nth-child(even) {
  background: rgba(18, 46, 34, 0.42);
}

.page-home .data-table tbody tr:hover {
  background: rgba(31, 91, 68, 0.4);
}

.page-home .data-table .num {
  font-family: var(--font-data);
  font-variant-numeric: tabular-nums;
  text-align: right;
  color: var(--white);
  white-space: nowrap;
}

.page-home .ha__foot {
  margin: 18px 0 0;
}

/* ================= 补时与角球 ================= */

.page-home .stoppage {
  padding: 68px 0 72px;
  background: var(--ink);
}

.page-home .stoppage__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}

.page-home .stoppage__media .media {
  aspect-ratio: 3 / 2;
}

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

.page-home .stoppage__bars li {
  padding-bottom: 14px;
  border-bottom: 1px solid var(--grid);
}

.page-home .stoppage__match {
  margin: 0 0 10px;
  font-size: 13px;
  letter-spacing: 0.04em;
  color: var(--silver);
}

.page-home .stoppage__row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0;
}

.page-home .stoppage__bar {
  position: relative;
  flex: 1 1 auto;
  height: 8px;
  min-width: 60px;
  background: var(--grid);
}

.page-home .stoppage__bar i {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  display: block;
  background: var(--orange);
  animation: homeStoppagePulse 1.2s ease-in-out infinite;
}

.page-home .stoppage__bars li:nth-child(1) .stoppage__bar i { width: 62%; }
.page-home .stoppage__bars li:nth-child(2) .stoppage__bar i { width: 88%; }
.page-home .stoppage__bars li:nth-child(3) .stoppage__bar i { width: 44%; }
.page-home .stoppage__bars li:nth-child(4) .stoppage__bar i { width: 100%; }

.page-home .stoppage__val {
  font-size: 15px;
  color: var(--orange);
  white-space: nowrap;
}

.page-home .stoppage__corner {
  font-size: 13px;
  color: var(--mist);
  white-space: nowrap;
}

.page-home .stoppage__foot {
  margin: 24px 0 0;
}

@keyframes homeStoppagePulse {
  0%, 100% { box-shadow: 0 0 8px rgba(255, 122, 47, 0.35); }
  50% { box-shadow: 0 0 20px rgba(255, 122, 47, 0.72); }
}

/* ================= 租借履历 ================= */

.page-home .loans {
  position: relative;
  padding: 68px 0 72px;
  background: var(--ink-2);
}

.page-home .loans::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, rgba(18, 46, 34, 0) 0%, var(--silver) 50%, rgba(18, 46, 34, 0) 100%);
  opacity: 0.5;
}

.page-home .loans__axis {
  display: flex;
  flex-direction: column;
  gap: 1px;
  margin: 0;
  padding: 0;
  list-style: none;
  background: var(--grid);
  border: 1px solid var(--grid);
}

.page-home .loans__node {
  position: relative;
  display: grid;
  gap: 8px;
  padding: 22px 18px 22px 30px;
  background: var(--ink-2);
}

.page-home .loans__node::before {
  content: "";
  position: absolute;
  left: 14px;
  top: 26px;
  width: 9px;
  height: 9px;
  background: var(--lime);
  box-shadow: 0 0 10px rgba(200, 255, 61, 0.5);
}

.page-home .loans__stage {
  color: var(--mist);
}

.page-home .loans__role {
  font-size: 17px;
  font-weight: 600;
  color: var(--white);
}

.page-home .loans__path {
  font-size: 13px;
  color: var(--lime);
  letter-spacing: 0.04em;
}

.page-home .loans__note {
  font-size: 13px;
  line-height: 1.7;
  color: var(--mist);
}

.page-home .loans__foot {
  margin: 22px 0 0;
}

/* ================= 季票 ================= */

.page-home .tickets {
  padding: 68px 0 72px;
  background: var(--ink);
}

.page-home .tickets__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}

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

.page-home .tickets__tiers li {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 6px 16px;
  padding: 16px 0 16px 18px;
  border-bottom: 1px solid var(--grid);
}

.page-home .tickets__tiers li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 20px;
  bottom: 20px;
  width: 2px;
  background: var(--lime);
  opacity: 0.3;
  transition: opacity 0.25s ease;
}

.page-home .tickets__tiers li:hover::before {
  opacity: 1;
}

.page-home .tickets__zone {
  font-size: 16px;
  font-weight: 500;
  color: var(--white);
}

.page-home .tickets__price {
  font-size: 18px;
  color: var(--lime);
  text-align: right;
  white-space: nowrap;
}

.page-home .tickets__note {
  grid-column: 1 / -1;
  font-size: 13px;
  line-height: 1.7;
  color: var(--mist);
}

.page-home .tickets__media {
  aspect-ratio: 4 / 3;
}

.page-home .tickets__foot {
  margin: 26px 0 0;
}

/* ================= 九季全景 ================= */

.page-home .seasons {
  padding: 68px 0 72px;
  background: var(--ink-2);
}

.page-home .seasons__band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin: 0;
  padding: 1px;
  list-style: none;
  background: var(--grid);
  border: 1px solid var(--grid);
}

.page-home .seasons__cell {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 8px;
  min-height: 168px;
  padding: 16px 12px 14px;
  background: var(--ink);
}

.page-home .seasons__bar {
  display: block;
  width: 100%;
  background: linear-gradient(180deg, var(--lime) 0%, var(--deep) 100%);
  opacity: 0.7;
}

.page-home .seasons__band li:nth-child(1) .seasons__bar { height: 22%; }
.page-home .seasons__band li:nth-child(2) .seasons__bar { height: 28%; }
.page-home .seasons__band li:nth-child(3) .seasons__bar { height: 34%; }
.page-home .seasons__band li:nth-child(4) .seasons__bar { height: 42%; }
.page-home .seasons__band li:nth-child(5) .seasons__bar { height: 50%; }
.page-home .seasons__band li:nth-child(6) .seasons__bar { height: 58%; }
.page-home .seasons__band li:nth-child(7) .seasons__bar { height: 68%; }
.page-home .seasons__band li:nth-child(8) .seasons__bar { height: 80%; }
.page-home .seasons__band li:nth-child(9) .seasons__bar { height: 96%; opacity: 1; }

.page-home .seasons__year {
  font-size: 15px;
  color: var(--white);
  letter-spacing: 0.02em;
}

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

.page-home .seasons__foot {
  margin: 22px 0 0;
  max-width: 62ch;
  font-size: 14px;
  line-height: 1.8;
  color: var(--mist);
}

/* ================= 四类模块入口 ================= */

.page-home .paths {
  padding: 68px 0 72px;
  background: var(--ink);
}

.page-home .paths__list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  margin: 0;
  padding: 1px;
  list-style: none;
  background: var(--grid);
  border: 1px solid var(--grid);
}

.page-home .paths__list > li {
  display: flex;
}

.page-home .paths__item {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-areas:
    "num name"
    "num desc";
  align-content: start;
  gap: 6px 16px;
  width: 100%;
  min-height: 152px;
  padding: 26px 20px;
  background: var(--ink-2);
  color: var(--white);
  text-decoration: none;
  transition: background 0.25s ease;
}

.page-home .paths__item:hover,
.page-home .paths__item:focus-visible {
  background: var(--deep);
}

.page-home .paths__num {
  grid-area: num;
  font-size: 20px;
  line-height: 1.2;
  color: var(--lime);
  letter-spacing: -0.02em;
}

.page-home .paths__name {
  grid-area: name;
  font-size: 17px;
  font-weight: 600;
}

.page-home .paths__desc {
  grid-area: desc;
  font-size: 14px;
  line-height: 1.75;
  color: var(--mist);
}

.page-home .paths__item:hover .paths__desc,
.page-home .paths__item:focus-visible .paths__desc {
  color: var(--white);
}

/* ================= 服务与联络 ================= */

.page-home .support {
  padding: 68px 0 76px;
  background: var(--ink-2);
}

.page-home .support__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

.page-home .support__intro .section-head__title {
  margin-top: 12px;
}

.page-home .support__lead {
  margin: 0 0 22px;
  max-width: 56ch;
  color: var(--mist);
  font-size: 15px;
  line-height: 1.85;
}

.page-home .support__list {
  margin: 0;
  border-top: 1px solid var(--silver);
}

.page-home .support__row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4px;
  padding: 14px 0;
  border-bottom: 1px solid var(--grid);
}

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

.page-home .support__row dd {
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
  color: var(--white);
  word-break: break-word;
}

.page-home .support__note {
  margin: 26px 0 0;
  padding-top: 18px;
  border-top: 1px solid var(--grid);
  font-size: 13px;
  line-height: 1.8;
  color: var(--mist);
}

/* ================= 响应式 ================= */

@media (min-width: 720px) {
  .page-home .seasons__band {
    grid-template-columns: repeat(9, 1fr);
  }

  .page-home .seasons__cell {
    min-height: 190px;
    padding: 16px 8px 14px;
  }

  .page-home .support__row {
    grid-template-columns: 140px 1fr;
    gap: 16px;
    align-items: baseline;
  }
}

@media (min-width: 900px) {
  .page-home .crumbs {
    padding: 28px var(--pad-x) 8px;
  }

  .page-home .hero {
    padding: 24px 0 88px;
  }

  .page-home .hero__grid {
    grid-template-columns: 38fr 62fr;
    gap: 44px;
    align-items: start;
    padding-top: 40px;
  }

  .page-home .hero__panel {
    padding: 28px 26px 30px;
  }

  .page-home .ha {
    padding: 88px 0 96px;
  }

  .page-home .ha__body {
    grid-template-columns: 22fr 78fr;
    gap: 36px;
    align-items: start;
  }

  .page-home .ha__media {
    aspect-ratio: 4 / 5;
  }

  .page-home .stoppage,
  .page-home .loans,
  .page-home .tickets,
  .page-home .seasons,
  .page-home .paths,
  .page-home .support {
    padding-top: 88px;
    padding-bottom: 96px;
  }

  .page-home .stoppage__grid {
    grid-template-columns: 40fr 60fr;
    gap: 44px;
    align-items: start;
  }

  .page-home .stoppage__grid .section-head {
    margin-bottom: 28px;
  }

  .page-home .loans__axis {
    flex-direction: row;
  }

  .page-home .loans__node {
    flex: 1 1 0;
    min-width: 0;
    padding: 82px 18px 24px;
    border-top: 1px solid var(--silver);
  }

  .page-home .loans__node::before {
    left: 18px;
    top: 58px;
  }

  .page-home .tickets__grid {
    grid-template-columns: 58fr 42fr;
    gap: 44px;
    align-items: start;
  }

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

  .page-home .paths__item {
    min-height: 176px;
    padding: 30px 28px;
  }

  .page-home .support__grid {
    grid-template-columns: 52fr 48fr;
    gap: 56px;
    align-items: start;
  }
}

@media (min-width: 1180px) {
  .page-home .hero__grid {
    grid-template-columns: 38fr 62fr;
    gap: 56px;
  }

  .page-home .hero__left {
    max-width: 520px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .page-home .stoppage__bar i {
    animation: none;
    box-shadow: 0 0 12px rgba(255, 122, 47, 0.45);
  }

  .page-home .paths__item,
  .page-home .text-link,
  .page-home .tickets__tiers li::before {
    transition: none;
  }
}
