.page-home {
  --home-line-blue: var(--blue);
  --home-line-red: var(--red);
  --home-line-yellow: var(--yellow);
}

/* ---------- 首屏 ---------- */
.page-home .home-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border-bottom: var(--edge);
  padding-block: clamp(48px, 9vw, 110px) clamp(40px, 7vw, 88px);
}

.page-home .home-hero__bg {
  position: absolute;
  inset: 0;
  z-index: -3;
}

.page-home .home-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 60% 55%;
  opacity: .26;
  filter: saturate(.65) contrast(1.08) brightness(.8);
}

.page-home .home-hero__wedge {
  position: absolute;
  z-index: -2;
  right: -12%;
  top: -18%;
  width: min(760px, 86vw);
  height: clamp(300px, 58vh, 620px);
  background:
    repeating-linear-gradient(
      135deg,
      rgba(198, 255, 79, .16) 0 2px,
      rgba(198, 255, 79, 0) 2px 14px
    ),
    linear-gradient(140deg, rgba(18, 54, 42, .95) 0%, rgba(11, 31, 23, .35) 100%);
  clip-path: polygon(16% 0, 100% 0, 100% 74%, 62% 100%, 0 100%, 0 26%);
}

.page-home .home-hero__rule {
  position: absolute;
  z-index: -1;
  left: 0;
  right: 0;
  bottom: 30%;
  height: 2px;
  background: linear-gradient(90deg, rgba(198, 255, 79, 0) 0%, rgba(198, 255, 79, .75) 34%, rgba(198, 255, 79, .12) 100%);
  transform: rotate(-3.2deg);
  transform-origin: left center;
  pointer-events: none;
}

.page-home .home-hero__inner {
  display: grid;
  gap: clamp(28px, 5vw, 56px);
  grid-template-columns: minmax(0, 1fr);
}

.page-home .home-hero__kicker {
  display: inline-block;
  margin: 0 0 18px;
  padding: 5px 12px;
  border: var(--edge);
  background: var(--neon);
  color: var(--black);
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.page-home .home-hero__title {
  margin: 0 0 clamp(16px, 2.4vw, 26px);
  font-size: clamp(2.05rem, 6.4vw, 4.4rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -.02em;
  color: var(--paper);
  text-shadow: 4px 4px 0 var(--black);
}

.page-home .home-hero__title em {
  font-style: normal;
  color: var(--neon);
  text-shadow: 4px 4px 0 var(--black);
}

.page-home .home-hero__lede {
  max-width: 46ch;
  margin: 0;
  font-size: clamp(15px, 1.6vw, 17px);
  line-height: 1.85;
  color: var(--paper);
  opacity: .9;
}

.page-home .home-hero__lines {
  display: grid;
  gap: 12px;
  align-content: end;
}

.page-home .home-line {
  position: relative;
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  grid-template-areas:
    "num name"
    "num desc";
  gap: 2px 12px;
  padding: 14px 18px;
  border: var(--edge);
  background: rgba(11, 31, 23, .86);
  color: var(--paper);
  text-decoration: none;
  box-shadow: var(--shadow);
  transition: transform .2s var(--ease), box-shadow .2s var(--ease), border-color .2s var(--ease),
    background-color .2s var(--ease);
}

.page-home .home-line::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 5px;
  background: var(--neon);
}

.page-home .home-line[data-tone="yellow"]::after { background: var(--home-line-yellow); }
.page-home .home-line[data-tone="blue"]::after { background: var(--home-line-blue); }
.page-home .home-line[data-tone="red"]::after { background: var(--home-line-red); }

.page-home .home-line__num {
  grid-area: num;
  align-self: center;
  font-family: var(--font-mono);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -.02em;
  color: var(--neon);
}

.page-home .home-line__name {
  grid-area: name;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: .01em;
}

.page-home .home-line__desc {
  grid-area: desc;
  font-size: 13px;
  line-height: 1.6;
  color: var(--gray);
}

.page-home .home-line:hover,
.page-home .home-line:focus-visible {
  transform: translate(-2px, -3px);
  box-shadow: var(--shadow-lg);
  border-color: var(--neon);
  background: var(--ink-3);
}

@media (min-width: 900px) {
  .page-home .home-hero__inner {
    grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
    align-items: end;
  }

  .page-home .home-hero__lines {
    padding-bottom: 8px;
  }

  .page-home .home-line {
    margin-left: 8%;
  }

  .page-home .home-line:nth-child(2) {
    margin-left: 3%;
  }

  .page-home .home-line:nth-child(3) {
    margin-left: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .page-home .home-line,
  .page-home .home-line:hover {
    transition: none;
    transform: none;
  }
}

/* ---------- 概况带 ---------- */
.page-home .home-band {
  background: var(--ink-2);
  border-bottom: var(--edge);
}

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

.page-home .home-band .stat {
  padding: clamp(16px, 3vw, 26px) clamp(10px, 2vw, 22px);
  border-left: var(--rule);
}

.page-home .home-band .stat:first-child {
  border-left: 0;
}

.page-home .home-band .stat__value {
  display: block;
  font-family: var(--font-mono);
  font-size: clamp(1.5rem, 3.4vw, 2.3rem);
  font-weight: 700;
  letter-spacing: -.02em;
  line-height: 1.1;
  color: var(--neon);
}

.page-home .home-band .stat__label {
  display: block;
  margin-top: 6px;
  font-size: 12.5px;
  letter-spacing: .06em;
  color: var(--gray);
}

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

/* ---------- 章节索引条 ---------- */
.page-home .home-index {
  position: sticky;
  top: 0;
  z-index: 25;
  background: var(--ink);
  border-bottom: var(--edge);
}

.page-home .home-index .indexbar {
  background: transparent;
  border: 0;
}

/* ---------- 01 三条数据线 ---------- */
.page-home .home-lines__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(18px, 2.4vw, 28px);
}

.page-home .home-line-card {
  display: block;
  position: relative;
  text-decoration: none;
  color: inherit;
  padding: clamp(20px, 2.6vw, 30px);
  padding-left: clamp(26px, 3vw, 38px);
  overflow: hidden;
}

.page-home .home-line-card .card__title {
  margin: 12px 0 10px;
  font-size: clamp(1.15rem, 2vw, 1.5rem);
  font-weight: 900;
  letter-spacing: -.01em;
}

.page-home .home-line-card .card__body p {
  margin: 0;
  font-size: 15px;
  line-height: 1.8;
  color: rgba(242, 233, 216, .84);
}

.page-home .home-line-card .card__stripe {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 6px;
  height: auto;
  border: 0;
}

.page-home .home-line-card__go {
  display: inline-block;
  margin-top: 18px;
  font-family: var(--font-mono);
  font-size: 12.5px;
  letter-spacing: .16em;
  color: var(--neon);
  border-bottom: 2px solid transparent;
  transition: border-color .2s var(--ease);
}

.page-home .home-line-card:hover .home-line-card__go,
.page-home .home-line-card:focus-visible .home-line-card__go {
  border-bottom-color: var(--neon);
}

.page-home .home-line-card--lead {
  background: var(--paper);
  color: var(--black);
}

.page-home .home-line-card--lead .card__body p {
  color: rgba(26, 26, 24, .82);
  max-width: 62ch;
}

.page-home .home-line-card--lead .home-line-card__go {
  color: var(--black);
  border-bottom-color: var(--black);
}

.page-home .home-line-card--lead .card__num {
  color: rgba(26, 26, 24, .35);
}

@media (min-width: 900px) {
  .page-home .home-lines__grid {
    grid-template-columns: repeat(12, minmax(0, 1fr));
    align-items: start;
  }

  .page-home .home-line-card--lead {
    grid-column: 1 / span 12;
  }

  .page-home .home-line-card:nth-child(2) {
    grid-column: 1 / span 6;
  }

  .page-home .home-line-card:nth-child(3) {
    grid-column: 8 / span 5;
  }
}

/* ---------- 02 检索台 ---------- */
.page-home .home-console__panel {
  border: var(--edge);
  background: var(--ink-2);
  box-shadow: var(--shadow);
  padding: clamp(20px, 2.8vw, 32px);
}

.page-home .home-console__label {
  display: block;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: .18em;
  color: var(--neon);
  margin-bottom: 10px;
}

.page-home .home-console__field {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: clamp(18px, 2.4vw, 26px);
}

.page-home .home-console__input {
  flex: 1 1 220px;
  min-width: 0;
  padding: 12px 14px;
  font-family: var(--font-mono);
  font-size: 14px;
  color: var(--paper);
  background: var(--ink);
  border: var(--edge);
  outline: none;
}

.page-home .home-console__input::placeholder {
  color: rgba(143, 167, 154, .78);
}

.page-home .home-console__input:focus {
  border-color: var(--neon);
  box-shadow: inset 0 0 0 2px rgba(198, 255, 79, .22);
}

.page-home .home-console__panel .chip {
  text-decoration: none;
}

.page-home .home-console__side {
  display: grid;
  align-content: start;
  gap: 14px;
  padding: clamp(18px, 2.4vw, 26px);
  border: var(--edge);
  border-left: 6px solid var(--neon);
  background: rgba(18, 54, 42, .55);
}

.page-home .home-console__side-title {
  margin: 0;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: .04em;
  color: var(--paper);
}

.page-home .home-console__example {
  display: block;
  padding: 12px 14px;
  border: var(--rule);
  background: rgba(11, 31, 23, .7);
  text-decoration: none;
  color: inherit;
  transition: border-color .2s var(--ease), transform .2s var(--ease);
}

.page-home .home-console__example:hover,
.page-home .home-console__example:focus-visible {
  border-color: var(--neon);
  transform: translateX(4px);
}

.page-home .home-console__example-k {
  display: block;
  font-size: 14px;
  font-weight: 800;
  color: var(--neon);
}

.page-home .home-console__example-v {
  display: block;
  margin-top: 4px;
  font-size: 13px;
  line-height: 1.7;
  color: var(--gray);
}

.page-home .home-console__note {
  margin: 0;
  font-size: 13px;
  line-height: 1.75;
  color: var(--gray);
}

@media (prefers-reduced-motion: reduce) {
  .page-home .home-console__example,
  .page-home .home-console__example:hover {
    transition: none;
    transform: none;
  }
}

/* ---------- 03 记录颗粒度 ---------- */
.page-home .home-grain__body {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(22px, 3vw, 38px);
}

.page-home .home-grain__sub {
  margin: 0 0 18px;
  font-size: clamp(1rem, 1.6vw, 1.15rem);
  font-weight: 800;
  letter-spacing: .02em;
  color: var(--neon);
}

.page-home .home-grain__timeline .timeline__node {
  border-left: 3px solid var(--yellow);
  padding: 4px 0 20px 18px;
  margin-bottom: 6px;
}

.page-home .home-grain__timeline .timeline__season {
  display: block;
  font-family: var(--font-mono);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -.01em;
  color: var(--paper);
}

.page-home .home-grain__timeline .timeline__desc {
  margin: 6px 0 0;
  font-size: 14px;
  line-height: 1.82;
  color: var(--gray);
  max-width: 56ch;
}

.page-home .home-grain__cards {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(18px, 2.4vw, 26px);
}

.page-home .home-grain__cards .media-frame {
  width: 100%;
}

.page-home .home-field-card {
  padding: clamp(18px, 2.4vw, 26px);
}

.page-home .home-field-card--paper {
  background: var(--paper);
  color: var(--black);
}

.page-home .home-field-card--paper .card__num {
  color: rgba(26, 26, 24, .34);
}

.page-home .home-field-card .card__title {
  margin: 10px 0 14px;
  font-size: clamp(1.02rem, 1.7vw, 1.24rem);
  font-weight: 900;
  letter-spacing: -.01em;
}

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

.page-home .home-field-list li {
  padding: 9px 12px;
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: .02em;
  background: rgba(11, 31, 23, .55);
  border-left: 3px solid var(--neon);
  color: var(--paper);
}

.page-home .home-field-card--paper .home-field-list li {
  background: rgba(26, 26, 24, .07);
  border-left-color: var(--black);
  color: var(--black);
}

@media (min-width: 900px) {
  .page-home .home-grain__body {
    grid-template-columns: minmax(0, 6fr) minmax(0, 6fr);
    align-items: start;
  }

  .page-home .home-grain__cards {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    align-items: start;
  }

  .page-home .home-grain__cards .media-frame {
    grid-column: 1 / span 2;
  }
}

/* ---------- 04 客场与转会窗 ---------- */
.page-home .home-compare__figure {
  width: 100%;
}

.page-home .home-compare__blocks {
  display: grid;
  gap: clamp(18px, 2.4vw, 26px);
  align-content: start;
}

.page-home .home-compare__block {
  position: relative;
  padding: clamp(20px, 2.6vw, 30px);
  border: var(--edge);
  background: var(--ink-2);
  box-shadow: var(--shadow);
}

.page-home .home-compare__block::before {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: 0;
  height: 0;
  border-top: 26px solid var(--neon);
  border-left: 26px solid transparent;
}

.page-home .home-compare__tag {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: .16em;
  color: var(--neon);
  margin-bottom: 10px;
}

.page-home .home-compare__block p {
  margin: 0 0 16px;
  font-size: 15px;
  line-height: 1.85;
  color: rgba(242, 233, 216, .86);
}

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

.page-home .home-compare__dims li {
  padding: 5px 12px;
  border: 2px solid rgba(143, 167, 154, .5);
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: .08em;
  color: var(--gray);
}

@media (min-width: 900px) {
  .page-home .home-compare__figure {
    position: sticky;
    top: 96px;
  }
}

/* ---------- 05 维护团队 ---------- */
.page-home .home-team__facts {
  display: grid;
  gap: clamp(16px, 2.2vw, 24px);
}

.page-home .home-team__fact {
  padding: clamp(18px, 2.4vw, 26px);
  border: var(--edge);
  background: rgba(18, 54, 42, .5);
}

.page-home .home-team__fact-k {
  display: block;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: .16em;
  color: var(--gray);
}

.page-home .home-team__fact-v {
  display: block;
  margin: 6px 0 8px;
  font-family: var(--font-mono);
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  font-weight: 700;
  letter-spacing: -.02em;
  color: var(--neon);
}

.page-home .home-team__fact p {
  margin: 0;
  font-size: 14px;
  line-height: 1.8;
  color: rgba(242, 233, 216, .8);
}

.page-home .home-team__reach {
  padding: clamp(20px, 2.8vw, 32px);
  border: var(--edge);
  background: var(--paper);
  color: var(--black);
  box-shadow: var(--shadow-lg);
  display: grid;
  align-content: start;
  gap: 14px;
}

.page-home .home-team__reach-title {
  margin: 0;
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-weight: 900;
  letter-spacing: -.01em;
}

.page-home .home-team__reach p {
  margin: 0;
  font-size: 14.5px;
  line-height: 1.8;
  color: rgba(26, 26, 24, .82);
}

.page-home .home-team__reach .btn {
  justify-self: start;
}

.page-home .home-team__meta {
  font-family: var(--font-mono);
  font-size: 12.5px !important;
  letter-spacing: .04em;
  color: rgba(26, 26, 24, .66) !important;
  border-top: 2px dashed rgba(26, 26, 24, .25);
  padding-top: 12px;
}

@media (min-width: 900px) {
  .page-home .home-team__facts {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
<<<END>>>
