.page-home {
  --home-cut: 24px;
  --home-gap: 16px;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  overflow-x: clip;
}

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

.page-home .home-hero {
  position: relative;
  background: var(--ink);
  padding: 0 0 34px;
  overflow: hidden;
}

.page-home .home-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    90deg,
    rgba(232, 241, 234, .045) 0 40px,
    rgba(232, 241, 234, 0) 40px 80px
  );
  pointer-events: none;
}

.page-home .home-hero .container {
  position: relative;
}

.page-home .home-hero .breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  padding: 20px 0 16px;
  font-size: 13px;
}

.page-home .home-hero .breadcrumbs__link {
  color: var(--text-light);
  text-decoration: none;
  opacity: .75;
}

.page-home .home-hero .breadcrumbs__link:hover {
  opacity: 1;
  color: var(--green);
}

.page-home .home-hero .breadcrumbs__current {
  color: var(--yellow);
  font-family: var(--font-mono);
  letter-spacing: .06em;
}

.page-home .home-hero__frame {
  position: relative;
  padding: 20px 16px 22px;
  background: var(--panel);
  border: 3px solid var(--green);
  clip-path: polygon(
    0 0,
    100% 0,
    100% calc(100% - var(--home-cut)),
    calc(100% - var(--home-cut)) 100%,
    0 100%
  );
  filter: drop-shadow(6px 6px 0 rgba(0, 200, 83, .45));
}

.page-home .home-hero__scale {
  display: flex;
  justify-content: space-between;
  list-style: none;
  margin: 0 0 16px;
  padding: 0 0 10px;
  border-bottom: 2px dashed rgba(232, 241, 234, .22);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .1em;
  color: var(--gray);
}

.page-home .home-hero__body {
  display: grid;
  gap: 22px;
}

.page-home .home-hero__copy .kicker {
  color: var(--green);
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: .18em;
  margin: 0 0 8px;
}

.page-home .home-hero h1 {
  margin: 0 0 14px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(29px, 7.8vw, 60px);
  line-height: .97;
  letter-spacing: -.02em;
  color: #fff;
}

.page-home .home-hero__lede {
  margin: 0 0 20px;
  max-width: 48ch;
  font-size: 16px;
  line-height: 1.72;
  color: var(--text-light);
}

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

.page-home .home-hero__plates {
  display: grid;
  gap: 10px;
  align-content: start;
}

.page-home .home-plate {
  padding: 14px 16px 16px;
  background: rgba(232, 241, 234, .05);
  border-left: 4px solid var(--green);
}

.page-home .home-plate--accent {
  border-left-color: var(--orange);
}

.page-home .home-plate--key {
  border-left-color: var(--yellow);
}

.page-home .home-plate__num {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(34px, 9vw, 46px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -.02em;
  color: var(--yellow);
  font-variant-numeric: tabular-nums;
}

.page-home .home-plate__label {
  display: block;
  margin-top: 8px;
  font-size: 15px;
  line-height: 1.55;
  color: var(--gray);
}

.page-home .home-hero__media {
  margin: 22px 0 0;
  border: 2px solid rgba(232, 241, 234, .28);
}

.page-home .home-hero__media img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 21 / 9;
  object-fit: cover;
}

.page-home .home-hero__media figcaption {
  padding: 10px 12px;
  border-top: 2px solid rgba(232, 241, 234, .18);
  font-size: 14px;
  line-height: 1.55;
  color: var(--gray);
}

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

.page-home .home-head {
  display: grid;
  gap: 10px;
  max-width: 72ch;
  margin-bottom: 24px;
}

.page-home .home-head__title {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(23px, 5.2vw, 36px);
  line-height: 1.06;
  letter-spacing: -.01em;
  color: var(--ink);
}

.page-home .home-head__note {
  margin: 0;
  font-size: 16px;
  line-height: 1.72;
  color: var(--ink);
  opacity: .78;
}

/* ============ 赛季轨道 ============ */

.page-home .home-seasons {
  padding: 48px 0 0;
}

.page-home .home-lane {
  display: flex;
  gap: 8px;
  margin: 0 0 22px;
  padding: 0 0 12px;
  list-style: none;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.page-home .home-lane__link {
  flex: 0 0 auto;
  display: inline-block;
  padding: 9px 16px;
  background: #fff;
  color: var(--ink);
  border: 2px solid var(--ink);
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: .04em;
  text-decoration: none;
  white-space: nowrap;
  transition: background .18s ease, color .18s ease, transform .18s ease;
}

.page-home .home-lane__link:hover,
.page-home .home-lane__link:focus-visible {
  background: var(--green);
  border-color: var(--green-deep);
  color: #fff;
  transform: translateY(-2px);
}

.page-home .home-season-list {
  display: grid;
  gap: 14px;
}

.page-home .home-season {
  position: relative;
  display: grid;
  gap: 10px;
  padding: 18px 18px 18px 24px;
  background: #fff;
  border: 2px solid var(--ink);
  box-shadow: var(--hard-sm);
  scroll-margin-top: 96px;
  transition: box-shadow .2s ease, transform .2s ease;
}

.page-home .home-season::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 6px;
  background: var(--green);
}

.page-home .home-season:nth-child(2)::before { background: var(--green-deep); }
.page-home .home-season:nth-child(3)::before { background: var(--orange-soft); }
.page-home .home-season:nth-child(4)::before { background: var(--orange); }
.page-home .home-season:nth-child(5)::before { background: var(--gray); }

.page-home .home-season:hover {
  box-shadow: 8px 8px 0 var(--ink);
}

.page-home .home-season__head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}

.page-home .home-season__num {
  padding: 2px 7px;
  border: 1px solid var(--orange);
  color: var(--orange);
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: .14em;
}

.page-home .home-season__title {
  margin: 0;
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 700;
  line-height: 1.24;
  color: var(--ink);
}

.page-home .home-season__text {
  margin: 0;
  font-size: 15px;
  line-height: 1.72;
  color: var(--ink);
}

.page-home .home-season__facts {
  display: grid;
  gap: 6px;
  margin: 0;
  padding: 12px 0 0;
  border-top: 1px dashed var(--line);
}

.page-home .home-season__facts > div {
  display: flex;
  gap: 12px;
  align-items: baseline;
}

.page-home .home-season__facts dt {
  flex: 0 0 56px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: .08em;
  color: var(--gray);
}

.page-home .home-season__facts dd {
  margin: 0;
  font-size: 15px;
  line-height: 1.5;
  color: var(--ink);
}

/* ============ 俱乐部名单 ============ */

.page-home .home-squads {
  padding: 56px 0 0;
}

.page-home .home-squad-grid {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
}

.page-home .home-squad {
  display: grid;
  gap: 10px;
  align-content: start;
  padding: 16px;
  background: #fff;
  border: 2px solid var(--ink);
  box-shadow: var(--hard-sm);
  transition: transform .18s ease, box-shadow .18s ease;
}

.page-home .home-squad:hover {
  transform: translate(-2px, -2px);
  box-shadow: 8px 8px 0 var(--green);
}

.page-home .home-squad__name {
  margin: 0;
  padding-bottom: 9px;
  border-bottom: 2px solid var(--ink);
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 700;
  line-height: 1.2;
  color: var(--ink);
}

.page-home .home-squad__meta {
  display: grid;
  gap: 5px;
  margin: 0;
}

.page-home .home-squad__meta > div {
  display: flex;
  justify-content: space-between;
  gap: 10px;
}

.page-home .home-squad__meta dt {
  font-size: 14px;
  color: var(--gray);
}

.page-home .home-squad__meta dd {
  margin: 0;
  font-family: var(--font-mono);
  font-size: 14px;
  font-variant-numeric: tabular-nums;
  color: var(--ink);
}

.page-home .home-squads__media {
  margin: 26px 0 0;
  border: 3px solid var(--ink);
  box-shadow: var(--hard);
}

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

.page-home .home-squads__media figcaption {
  padding: 12px 14px;
  border-top: 2px solid var(--ink);
  font-size: 14px;
  line-height: 1.6;
  background: #fff;
  color: var(--ink);
}

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

/* ============ 季前热身对照 ============ */

.page-home .home-friendlies {
  position: relative;
  margin-top: 56px;
  padding: 54px 0 58px;
  background: var(--ink);
  color: var(--text-light);
  overflow: hidden;
}

.page-home .home-friendlies::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(232, 241, 234, .05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(232, 241, 234, .05) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
}

.page-home .home-friendlies .container {
  position: relative;
}

.page-home .home-friendlies .home-head__title {
  color: #fff;
}

.page-home .home-friendlies .home-head__note {
  color: var(--text-light);
  opacity: .82;
}

.page-home .home-band {
  display: flex;
  height: 44px;
  margin-bottom: 18px;
  border: 2px solid var(--ink);
  overflow: hidden;
}

.page-home .home-band__seg {
  height: 100%;
  border-right: 2px solid var(--ink);
}

.page-home .home-band__seg:last-child {
  border-right: 0;
}

.page-home .home-band__seg--1 { width: 18%; background: var(--green-deep); }
.page-home .home-band__seg--2 { width: 27%; background: var(--green); }
.page-home .home-band__seg--3 { width: 21%; background: #4B6072; }
.page-home .home-band__seg--4 { width: 22%; background: var(--orange-soft); }
.page-home .home-band__seg--5 { width: 12%; background: var(--orange); }

.page-home .home-band__legend {
  display: grid;
  gap: 10px;
  margin: 0 0 28px;
  padding: 0;
  list-style: none;
  font-size: 14px;
  line-height: 1.5;
}

.page-home .home-band__legend li {
  display: flex;
  align-items: baseline;
  gap: 8px;
  color: var(--text-light);
}

.page-home .home-band__legend b {
  font-family: var(--font-mono);
  font-variant-numeric: tabular-nums;
  font-weight: 700;
  color: var(--yellow);
}

.page-home .home-band__swatch {
  flex: 0 0 auto;
  width: 12px;
  height: 12px;
  transform: translateY(1px);
}

.page-home .home-band__swatch--1 { background: var(--green-deep); }
.page-home .home-band__swatch--2 { background: var(--green); }
.page-home .home-band__swatch--3 { background: #4B6072; }
.page-home .home-band__swatch--4 { background: var(--orange-soft); }
.page-home .home-band__swatch--5 { background: var(--orange); }

.page-home .home-tie__media {
  margin: 0 0 28px;
  border: 2px solid rgba(232, 241, 234, .28);
}

.page-home .home-tie__media img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 2 / 1;
  object-fit: cover;
}

.page-home .home-tie__media figcaption {
  padding: 10px 14px;
  border-top: 2px solid rgba(232, 241, 234, .18);
  font-size: 14px;
  line-height: 1.55;
  color: var(--gray);
}

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

.page-home .home-friendlies .data-table caption {
  padding: 0 0 12px;
  text-align: left;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: .12em;
  color: var(--gray);
  text-transform: uppercase;
}

.page-home .home-friendlies .data-table th,
.page-home .home-friendlies .data-table td {
  padding: 11px 14px;
  text-align: left;
  white-space: nowrap;
  border-bottom: 1px solid rgba(232, 241, 234, .18);
}

.page-home .home-friendlies .data-table th {
  border-bottom-color: rgba(232, 241, 234, .34);
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .1em;
  color: var(--gray);
}

.page-home .home-friendlies .data-table td {
  color: var(--text-light);
}

.page-home .home-friendlies .data-table td:nth-child(2) {
  font-family: var(--font-mono);
  font-variant-numeric: tabular-nums;
  color: var(--yellow);
}

/* ============ 过程数据 ============ */

.page-home .home-metrics {
  padding: 56px 0 0;
}

.page-home .home-metrics__grid {
  display: grid;
  gap: 14px;
  margin-bottom: 26px;
}

.page-home .home-metric {
  padding: 20px 18px 22px;
  background: #fff;
  border: 2px solid var(--ink);
  border-top: 8px solid var(--green);
  box-shadow: var(--hard-sm);
}

.page-home .home-metric--orange {
  border-top-color: var(--orange);
}

.page-home .home-metric__key {
  display: inline-block;
  padding: 3px 9px;
  background: var(--green);
  color: #fff;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: .16em;
}

.page-home .home-metric--orange .home-metric__key {
  background: var(--orange);
}

.page-home .home-metric h3 {
  margin: 14px 0 8px;
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  line-height: 1.16;
  color: var(--ink);
}

.page-home .home-metric p {
  margin: 0;
  font-size: 15px;
  line-height: 1.72;
  color: var(--ink);
}

.page-home .home-metrics__media {
  margin: 0 0 22px;
  border: 3px solid var(--ink);
  box-shadow: var(--hard);
}

.page-home .home-metrics__media img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 2 / 1;
  object-fit: cover;
}

.page-home .home-metrics__media figcaption {
  padding: 12px 14px;
  border-top: 2px solid var(--ink);
  background: #fff;
  font-size: 14px;
  line-height: 1.6;
  color: var(--ink);
}

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

.page-home .home-metrics__note {
  margin: 0;
  max-width: 70ch;
  font-size: 15px;
  line-height: 1.72;
  color: var(--ink);
}

/* ============ 使用场景 ============ */

.page-home .home-cases {
  padding: 56px 0 0;
}

.page-home .home-cases__grid {
  display: grid;
  gap: 14px;
}

.page-home .home-case {
  display: grid;
  gap: 10px;
  align-content: start;
  padding: 22px 18px 24px;
  background: #fff;
  border: 2px solid var(--ink);
  box-shadow: var(--hard-sm);
  transition: transform .18s ease, box-shadow .18s ease;
}

.page-home .home-case:hover {
  transform: translate(-2px, -2px);
  box-shadow: 8px 8px 0 var(--orange);
}

.page-home .home-case__num {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 800;
  line-height: .9;
  letter-spacing: -.02em;
  color: var(--orange);
}

.page-home .home-case h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  line-height: 1.2;
  color: var(--ink);
}

.page-home .home-case p {
  margin: 0;
  font-size: 15px;
  line-height: 1.72;
  color: var(--ink);
}

.page-home .home-case a {
  justify-self: start;
  padding-bottom: 3px;
  border-bottom: 2px solid var(--green);
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: .04em;
  color: var(--green-deep);
  text-decoration: none;
}

.page-home .home-case a:hover {
  border-bottom-color: var(--orange);
  color: var(--orange);
}

/* ============ 收尾 ============ */

.page-home .home-close {
  padding: 56px 0 40px;
}

.page-home .home-close__box {
  position: relative;
  padding: 28px 20px 32px;
  background: var(--green);
  border: 3px solid var(--ink);
  clip-path: polygon(
    0 0,
    100% 0,
    100% calc(100% - 28px),
    calc(100% - 28px) 100%,
    0 100%
  );
  filter: drop-shadow(6px 6px 0 var(--ink));
}

.page-home .home-close__big {
  margin: 0 0 12px;
  font-family: var(--font-display);
  font-size: clamp(22px, 5vw, 34px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -.01em;
  color: #052B16;
}

.page-home .home-close__text {
  margin: 0 0 22px;
  max-width: 64ch;
  font-size: 16px;
  line-height: 1.72;
  color: #06351C;
}

.page-home .home-close__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

/* ============ 错峰进入 ============ */

.is-js .page-home [data-reveal] {
  transition: opacity .32s ease, transform .32s ease;
}

.is-js .page-home [data-reveal]:not(.is-visible) {
  opacity: 0;
  transform: translateY(12px);
}

@media (prefers-reduced-motion: reduce) {
  .is-js .page-home [data-reveal],
  .is-js .page-home [data-reveal]:not(.is-visible) {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .page-home .home-squad:hover,
  .page-home .home-case:hover,
  .page-home .home-lane__link:hover,
  .page-home .home-lane__link:focus-visible {
    transform: none;
  }
}

/* ============ 桌面增强 ============ */

@media (min-width: 640px) {
  .page-home .home-hero__frame {
    padding: 26px 24px 28px;
  }

  .page-home .home-band {
    height: 58px;
  }

  .page-home .home-band__legend {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 14px;
  }
}

@media (min-width: 860px) {
  .page-home .home-hero {
    padding-bottom: 46px;
  }

  .page-home .home-hero__frame {
    padding: 30px 30px 32px;
  }

  .page-home .home-hero__body {
    grid-template-columns: minmax(0, 1.3fr) minmax(268px, .82fr);
    gap: 34px;
    align-items: start;
  }

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

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

  .page-home .home-close {
    padding-bottom: 72px;
  }

  .page-home .home-close__box {
    padding: 36px 32px 40px;
  }
}

@media (min-width: 1080px) {
  .page-home .home-season-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
  }

  .page-home .home-season:first-child {
    grid-column: 1 / -1;
  }

  .page-home .home-band {
    height: 68px;
  }
}
<<<END>>>
