.page-home {
  --home-line: 1px solid rgba(140, 154, 147, 0.28);
  --home-line-soft: 1px solid rgba(140, 154, 147, 0.18);
  --home-cyan-soft: rgba(53, 224, 208, 0.35);
  overflow-x: clip;
  background: var(--c-base);
  color: var(--c-ink);
  font-family: var(--font-body);
  font-size: var(--step-body);
  line-height: 1.75;
}

.page-home img {
  max-width: 100%;
  height: auto;
}

.page-home h1,
.page-home h2,
.page-home h3 {
  font-family: var(--font-head);
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--c-ink);
  margin: 0;
}

.page-home .home-section {
  padding: clamp(48px, 6.4vw, 96px) 0;
}

/* ---------- 首屏框景 ---------- */

.page-home .home-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: clamp(72px, 12vh, 132px) 0 clamp(40px, 6vh, 72px);
}

.page-home .home-hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.5) brightness(0.44) contrast(1.05);
  z-index: -3;
}

.page-home .home-hero__veil {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(180deg, rgba(11, 20, 16, 0.9) 0%, rgba(11, 20, 16, 0.72) 42%, rgba(11, 20, 16, 0.98) 100%),
    repeating-linear-gradient(0deg, transparent 0 47px, rgba(140, 154, 147, 0.09) 47px 48px),
    repeating-linear-gradient(90deg, transparent 0 47px, rgba(140, 154, 147, 0.09) 47px 48px);
}

.page-home .home-hero__frame {
  position: relative;
  display: grid;
  gap: clamp(12px, 1.5vw, 20px);
  border: 1px solid rgba(140, 154, 147, 0.36);
  background: linear-gradient(150deg, rgba(15, 42, 34, 0.62), rgba(11, 20, 16, 0.28));
  padding: clamp(22px, 3vw, 40px) clamp(18px, 3.2vw, 52px) clamp(24px, 3.4vw, 46px);
}

.page-home .home-hero__tick {
  position: absolute;
  background: var(--home-cyan-soft);
}

.page-home .home-hero__tick--t,
.page-home .home-hero__tick--b {
  left: 14%;
  right: 14%;
  height: 1px;
}

.page-home .home-hero__tick--t { top: -1px; }
.page-home .home-hero__tick--b { bottom: -1px; }

.page-home .home-hero__tick--l,
.page-home .home-hero__tick--r {
  top: 24%;
  bottom: 24%;
  width: 1px;
}

.page-home .home-hero__tick--l { left: -1px; }
.page-home .home-hero__tick--r { right: -1px; }

.page-home .breadcrumbs {
  font-family: var(--font-num);
  font-size: 12px;
  letter-spacing: 0.14em;
  color: var(--c-rock);
}

.page-home .home-hero__eyebrow {
  margin: 0;
  font-family: var(--font-num);
  font-size: 12px;
  letter-spacing: 0.22em;
  color: var(--c-cyan);
}

.page-home .home-hero h1 {
  font-size: var(--step-h1);
  line-height: 1.08;
  max-width: 17ch;
}

.page-home .home-hero__lede {
  margin: 0;
  max-width: 62ch;
  color: #cfd6cd;
  font-size: clamp(15px, 1.2vw, 18px);
}

.page-home .home-hero__facts {
  list-style: none;
  margin: clamp(6px, 1vw, 14px) 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: rgba(140, 154, 147, 0.3);
  border: 1px solid rgba(140, 154, 147, 0.3);
}

.page-home .home-hero__facts li {
  display: grid;
  grid-template-columns: auto auto;
  justify-content: start;
  align-items: baseline;
  column-gap: 8px;
  row-gap: 3px;
  padding: 12px 14px;
  background: #0d221c;
}

.page-home .home-hero__num {
  font-family: var(--font-num);
  font-size: clamp(24px, 2.6vw, 36px);
  line-height: 1;
  color: var(--c-orange);
}

.page-home .home-hero__unit {
  font-size: 13px;
  color: var(--c-ink);
}

.page-home .home-hero__facts em {
  grid-column: 1 / -1;
  font-style: normal;
  font-size: 12px;
  line-height: 1.5;
  color: var(--c-rock);
}

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

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

/* ---------- 按钮 ---------- */

.page-home .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border: 1px solid transparent;
  border-radius: 0;
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-decoration: none;
  transition: background-color 0.22s var(--ease), color 0.22s var(--ease), border-color 0.22s var(--ease);
}

.page-home .btn--primary {
  background: var(--c-orange);
  color: #14100b;
}

.page-home .btn--primary:hover,
.page-home .btn--primary:focus-visible {
  background: #ffa569;
}

.page-home .btn--ghost {
  border-color: var(--home-cyan-soft);
  color: var(--c-cyan);
}

.page-home .btn--ghost:hover,
.page-home .btn--ghost:focus-visible {
  background: rgba(53, 224, 208, 0.14);
}

/* ---------- 团队条 ---------- */

.page-home .home-trust {
  background: #0f2a22;
  border-top: var(--home-line);
  border-bottom: var(--home-line);
  padding: clamp(18px, 2.4vw, 28px) 0;
}

.page-home .home-trust__row {
  display: grid;
  gap: 14px;
  align-items: center;
}

.page-home .home-trust__lead {
  margin: 0;
  font-family: var(--font-head);
  font-size: clamp(15px, 1.4vw, 19px);
  color: var(--c-ink);
}

.page-home .home-trust__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 22px;
  font-size: 13px;
  color: var(--c-rock);
}

.page-home .home-trust__list b {
  font-family: var(--font-num);
  font-size: 17px;
  color: var(--c-cyan);
  margin-right: 4px;
}

.page-home .home-trust__link {
  justify-self: start;
  font-size: 13px;
  color: var(--c-cyan);
  text-decoration: none;
  border-bottom: 1px solid var(--home-cyan-soft);
  padding-bottom: 2px;
}

/* ---------- 通用标题 ---------- */

.page-home .section__eyebrow {
  margin: 0;
  font-family: var(--font-num);
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--c-cyan);
}

.page-home .home-head {
  display: grid;
  gap: 10px;
  max-width: 760px;
  margin-bottom: clamp(26px, 3.2vw, 46px);
}

.page-home .home-head h2 {
  font-size: var(--step-h2);
  line-height: 1.16;
}

.page-home .home-head__sub {
  margin: 0;
  color: var(--c-rock);
}

.page-home .home-head--center {
  max-width: none;
  text-align: center;
  justify-items: center;
}

.page-home .meta {
  font-size: var(--step-note);
  color: var(--c-rock);
}

/* ---------- 赛季数据总览 ---------- */

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

.page-home .home-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: clamp(18px, 2vw, 26px);
  background: #0f2a22;
  border: var(--home-line);
  overflow: hidden;
}

.page-home .home-card > *:not(.home-card__bg) {
  position: relative;
  z-index: 1;
}

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

.page-home .home-card--away {
  background: linear-gradient(158deg, #12352a 0%, #0b1410 78%);
}

.page-home .home-card--shot {
  border-top: 2px solid var(--c-hot);
}

.page-home .home-card--transfer {
  border-top: 2px solid var(--c-cyan);
}

.page-home .home-card--number {
  border-top: 2px solid var(--c-amber);
}

.page-home .home-card__head h3 {
  font-size: var(--step-h3);
}

.page-home .home-card__claim {
  margin: 6px 0 0;
  font-size: 14px;
  line-height: 1.6;
  color: #bfc9c1;
}

.page-home .home-card__num {
  margin: clamp(8px, 1.2vw, 16px) 0 0;
  font-family: var(--font-num);
  font-size: clamp(38px, 6.4vw, 84px);
  line-height: 0.92;
  letter-spacing: -0.04em;
}

.page-home .home-card__num--cool {
  background: linear-gradient(92deg, var(--c-blue-a), var(--c-blue-b));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.page-home .home-card__num--hot { color: var(--c-hot); }
.page-home .home-card__num--cyan { color: var(--c-cyan); }
.page-home .home-card__num--amber { color: var(--c-amber); }

.page-home .home-card__label {
  margin: 0;
  font-size: 13px;
  line-height: 1.6;
  color: var(--c-rock);
}

.page-home .home-card__bars {
  display: grid;
  gap: 7px;
  margin-top: auto;
  padding-top: 14px;
}

.page-home .home-card__bars span {
  display: block;
  height: 9px;
  background: linear-gradient(90deg, var(--c-blue-a), var(--c-blue-b));
}

.page-home .home-card__bars span:nth-child(1) { width: 92%; }
.page-home .home-card__bars span:nth-child(2) { width: 68%; }
.page-home .home-card__bars span:nth-child(3) { width: 45%; }

.page-home .home-card__cols {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  height: 62px;
  margin-top: auto;
  padding-top: 14px;
}

.page-home .home-card__cols span {
  flex: 1;
  background: linear-gradient(180deg, var(--c-hot), #6f2712);
}

.page-home .home-card__cols span:nth-child(1) { height: 100%; }
.page-home .home-card__cols span:nth-child(2) { height: 62%; }
.page-home .home-card__cols span:nth-child(3) { height: 34%; }

.page-home .home-card__tags {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.page-home .home-card__tags li {
  padding: 3px 9px;
  border: var(--home-line);
  font-size: 12px;
  color: #c3cdc5;
}

.page-home .home-card__link {
  align-self: flex-start;
  margin-top: auto;
  padding-top: 10px;
  font-size: 14px;
  color: var(--c-cyan);
  text-decoration: none;
  border-bottom: 1px solid var(--home-cyan-soft);
}

/* ---------- 转会时间线 ---------- */

.page-home .home-window {
  background: linear-gradient(180deg, #0f2a22 0%, #0b1410 100%);
  border-top: var(--home-line-soft);
  border-bottom: var(--home-line-soft);
}

.page-home .home-window__switch {
  margin-bottom: clamp(22px, 3vw, 36px);
}

.page-home .home-window__tabs {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.page-home .home-window__tab {
  appearance: none;
  cursor: pointer;
  padding: 8px 16px;
  background: transparent;
  border: var(--home-line);
  border-radius: 0;
  font-family: var(--font-head);
  font-size: 14px;
  color: var(--c-rock);
  transition: color 0.2s var(--ease), border-color 0.2s var(--ease), background-color 0.2s var(--ease);
}

.page-home .home-window__tab:hover {
  color: var(--c-ink);
}

.page-home .home-window__tab.is-active,
.page-home .home-window__tab[aria-pressed="true"] {
  color: var(--c-base);
  background: var(--c-cyan);
  border-color: var(--c-cyan);
}

.page-home .home-window__rail {
  list-style: none;
  margin: 0;
  padding: 0 0 0 20px;
  display: grid;
  gap: 0;
  border-left: var(--home-line);
}

.page-home .home-window__stop {
  position: relative;
  padding: 0 0 22px 0;
}

.page-home .home-window__stop:last-child {
  padding-bottom: 0;
}

.page-home .home-window__dot {
  position: absolute;
  left: -25px;
  top: 8px;
  width: 9px;
  height: 9px;
  background: var(--c-cyan);
  box-shadow: 0 0 0 3px rgba(53, 224, 208, 0.14);
}

.page-home .home-window__stop h3 {
  font-size: 16px;
  margin: 0 0 4px;
}

.page-home .home-window__stop p {
  margin: 0;
  font-size: 13px;
  line-height: 1.65;
  color: var(--c-rock);
}

.page-home .home-window__note {
  margin: clamp(22px, 3vw, 34px) 0 0;
  padding-top: 14px;
  border-top: var(--home-line-soft);
  font-size: 13px;
  color: var(--c-rock);
}

/* ---------- 中国区赛程 ---------- */

.page-home .home-schedule__inner {
  display: grid;
  gap: clamp(24px, 3vw, 44px);
}

.page-home .home-schedule__text h2 {
  font-size: var(--step-h2);
  line-height: 1.16;
  margin: 10px 0 12px;
}

.page-home .home-schedule__text > p {
  margin: 0 0 20px;
  color: #c3cdc5;
  max-width: 52ch;
}

.page-home .home-schedule__steps {
  list-style: none;
  margin: 0 0 24px;
  padding: 0;
  display: grid;
  gap: 12px;
}

.page-home .home-schedule__step {
  display: grid;
  gap: 2px;
  padding: 8px 0 8px 16px;
  border-left: 2px solid var(--c-rock);
}

.page-home .home-schedule__step b {
  font-family: var(--font-num);
  font-size: 15px;
  color: var(--c-ink);
}

.page-home .home-schedule__step span {
  font-size: 13px;
  color: var(--c-rock);
}

.page-home .home-schedule__step--amber { border-left-color: var(--c-amber); }
.page-home .home-schedule__step--cyan { border-left-color: var(--c-cyan); }
.page-home .home-schedule__step--orange { border-left-color: var(--c-orange); }

.page-home .home-schedule__media {
  margin: 0;
  display: grid;
  gap: 8px;
}

.page-home .home-schedule__media img {
  width: 100%;
  display: block;
  border: var(--home-line);
  object-fit: cover;
  filter: saturate(0.6) brightness(0.85);
}

.page-home .home-schedule__media .meta {
  margin: 0;
  text-align: right;
}

/* ---------- 号码档案 ---------- */

.page-home .home-number {
  background: #0f2a22;
  border-top: var(--home-line-soft);
  border-bottom: var(--home-line-soft);
}

.page-home .home-number__inner {
  display: grid;
  gap: clamp(24px, 3vw, 48px);
}

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

.page-home .home-number__media img {
  width: 100%;
  display: block;
  border: var(--home-line);
  object-fit: cover;
  filter: saturate(0.55) brightness(0.9);
  max-height: 460px;
}

.page-home .home-number__text h2 {
  font-size: var(--step-h2);
  line-height: 1.16;
  margin: 10px 0 12px;
}

.page-home .home-number__text > p {
  margin: 0 0 22px;
  color: #c3cdc5;
  max-width: 56ch;
}

.page-home .home-number__facts {
  display: grid;
  gap: 16px;
  margin: 0 0 24px;
  padding: 18px 0 0;
  border-top: var(--home-line-soft);
}

.page-home .home-number__facts div {
  display: grid;
  gap: 4px;
}

.page-home .home-number__facts dt {
  font-family: var(--font-num);
  font-size: 22px;
  line-height: 1;
  color: var(--c-amber);
}

.page-home .home-number__facts dd {
  margin: 0;
  font-size: 13px;
  color: var(--c-rock);
}

/* ---------- 租借 / 前瞻 ---------- */

.page-home .home-duo__grid {
  display: grid;
  gap: var(--grid-gap);
}

.page-home .home-duo__panel {
  padding: clamp(20px, 2.4vw, 34px);
  background: #0f2a22;
  border: var(--home-line);
}

.page-home .home-duo__panel--loan { border-top: 2px solid var(--c-amber); }
.page-home .home-duo__panel--preview { border-top: 2px solid var(--c-cyan); }

.page-home .home-duo__panel h2 {
  font-size: clamp(20px, 2vw, 28px);
  line-height: 1.2;
  margin: 10px 0 12px;
}

.page-home .home-duo__panel > p {
  margin: 0 0 18px;
  color: #c3cdc5;
}

.page-home .home-duo__list {
  list-style: none;
  margin: 0 0 20px;
  padding: 0;
  display: grid;
  gap: 8px;
  font-size: 14px;
  color: var(--c-ink);
}

.page-home .home-duo__list li {
  padding-left: 18px;
  position: relative;
}

.page-home .home-duo__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 8px;
  height: 1px;
  background: var(--c-cyan);
}

.page-home .home-duo__panel .home-card__link {
  margin-top: 0;
}

/* ---------- 规则说明 ---------- */

.page-home .home-rules {
  background: linear-gradient(180deg, #0b1410 0%, #102b23 100%);
}

.page-home .home-rules__grid {
  display: grid;
  gap: 0;
  border-top: var(--home-line);
}

.page-home .home-rules__fold {
  padding: 14px 0;
  border-bottom: var(--home-line);
}

.page-home .home-rules__fold .fold__summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 14px;
  font-family: var(--font-head);
  font-size: clamp(16px, 1.35vw, 19px);
  font-weight: 600;
  color: var(--c-ink);
}

.page-home .home-rules__fold .fold__summary::-webkit-details-marker {
  display: none;
}

.page-home .home-rules__fold .fold__summary::after {
  content: "＋";
  flex: 0 0 auto;
  font-family: var(--font-num);
  font-size: 15px;
  color: var(--c-cyan);
}

.page-home .home-rules__fold[open] .fold__summary::after {
  content: "－";
}

.page-home .home-rules__fold .fold__body {
  padding-top: 10px;
}

.page-home .home-rules__fold .fold__body p {
  margin: 0;
  font-size: 14px;
  line-height: 1.75;
  color: var(--c-rock);
  max-width: 62ch;
}

/* ---------- 下载与合作 ---------- */

.page-home .home-cta__grid {
  display: grid;
  gap: var(--grid-gap);
}

.page-home .home-cta__panel {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: clamp(22px, 2.8vw, 38px);
  border: var(--home-line);
}

.page-home .home-cta__panel--app {
  background: linear-gradient(150deg, #12352a 0%, #0b1410 86%);
  border-color: rgba(53, 224, 208, 0.32);
}

.page-home .home-cta__panel--biz {
  background: linear-gradient(150deg, #1b3b30 0%, #0b1410 86%);
  border-color: rgba(255, 138, 61, 0.32);
}

.page-home .home-cta__panel h3 {
  font-size: clamp(20px, 2vw, 26px);
}

.page-home .home-cta__panel p {
  margin: 0;
  color: #c3cdc5;
  max-width: 46ch;
}

.page-home .home-cta__stat {
  font-family: var(--font-num);
  font-size: 14px;
  color: var(--c-cyan);
}

.page-home .home-cta__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.page-home .home-cta__list li {
  padding: 3px 10px;
  border: 1px solid rgba(255, 138, 61, 0.34);
  font-size: 12px;
  color: #f0d9c9;
}

.page-home .home-cta__panel .btn {
  align-self: flex-start;
  margin-top: auto;
}

/* ---------- 响应式 ---------- */

@media (min-width: 700px) {
  .page-home .home-trust__row {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) auto;
  }

  .page-home .home-trust__link {
    justify-self: end;
  }

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

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

  .page-home .home-rules__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: clamp(20px, 3vw, 48px);
  }
}

@media (min-width: 900px) {
  .page-home .home-hero {
    display: flex;
    align-items: center;
    min-height: 88vh;
  }

  .page-home .home-window__rail {
    grid-template-columns: repeat(6, minmax(0, 1fr));
    border-left: 0;
    border-top: var(--home-line);
    padding-left: 0;
  }

  .page-home .home-window__stop {
    padding: 28px 18px 0 0;
  }

  .page-home .home-window__dot {
    left: 0;
    top: -5px;
  }

  .page-home .home-schedule__inner {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    align-items: center;
  }

  .page-home .home-number__inner {
    grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
    align-items: center;
  }

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

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

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

  .page-home .home-card--away {
    grid-column: 1 / span 4;
    grid-row: 1 / span 1;
  }

  .page-home .home-card--number {
    grid-column: 5 / span 2;
    grid-row: 1 / span 2;
  }

  .page-home .home-card--shot {
    grid-column: 1 / span 2;
    grid-row: 2 / span 1;
  }

  .page-home .home-card--transfer {
    grid-column: 3 / span 2;
    grid-row: 2 / span 1;
  }
}
<<<END>>>
