.page-home {
  --home-pad: clamp(40px, 7vw, 96px);
  --home-rhythm: clamp(24px, 4vw, 56px);
  display: block;
  background: var(--ink);
}

/* ---------- 顶部上下文条 ---------- */
.page-home .page-intro-bar {
  background: var(--ink-deep);
  border-bottom: 1px solid var(--line);
}

.page-home .intro-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 14px;
  padding-block: 11px;
  font-size: var(--fs-1);
  letter-spacing: .06em;
  color: var(--mist);
}

.page-home .intro-round {
  color: var(--cyan);
  font-weight: 700;
  letter-spacing: .1em;
}

.page-home .intro-text {
  flex: 1 1 200px;
  min-width: 0;
}

.page-home .intro-tag {
  flex: 0 0 auto;
}

/* ---------- 首屏 ---------- */
.page-home .hero {
  position: relative;
  overflow: hidden;
  padding: clamp(36px, 7vw, 92px) 0 clamp(44px, 8vw, 104px);
  background:
    radial-gradient(110% 75% at 82% 8%, rgba(59, 224, 200, .16), transparent 62%),
    radial-gradient(85% 60% at 8% 92%, rgba(255, 122, 61, .10), transparent 58%),
    var(--ink);
}

.page-home .hero-inner {
  width: 100%;
  max-width: var(--shell-max);
  margin-inline: auto;
  padding-inline: var(--gutter);
  display: grid;
  gap: clamp(32px, 5vw, 56px);
}

.page-home .hero-copy {
  min-width: 0;
}

.page-home .hero-title {
  margin: 14px 0 0;
  font-size: clamp(40px, 8.4vw, 88px);
  font-weight: 900;
  line-height: 1.02;
  letter-spacing: -.02em;
  color: var(--paper);
  text-wrap: balance;
}

.page-home .hero-copy .lede {
  margin-top: 20px;
  max-width: 46ch;
  color: var(--mist);
  font-size: clamp(16px, 1.6vw, 18px);
  line-height: 1.75;
}

.page-home .hero-actions {
  margin-top: 28px;
}

.page-home .hero-figures {
  margin: clamp(30px, 5vw, 48px) 0 0;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.page-home .figure-item {
  min-width: 0;
}

.page-home .figure-label {
  font-size: var(--fs-1);
  letter-spacing: .08em;
  color: var(--mist);
}

.page-home .figure-value {
  margin: 6px 0 0;
  font-size: clamp(16px, 1.7vw, 20px);
  color: var(--paper);
  white-space: nowrap;
}

.page-home .figure-value .mono {
  color: var(--cyan);
  font-size: 1.15em;
}

/* 右侧视觉台 */
.page-home .hero-stage {
  position: relative;
  isolation: isolate;
  aspect-ratio: 4 / 5;
  border: 1px solid var(--line);
  overflow: hidden;
  background: var(--ink-deep);
  box-shadow: var(--shadow-1);
}

.page-home .hero-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .58;
  filter: saturate(.85) contrast(1.05);
}

.page-home .hero-stage::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background-image:
    linear-gradient(to right, rgba(59, 224, 200, .18) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(59, 224, 200, .18) 1px, transparent 1px);
  background-size: 25% 25%;
  mix-blend-mode: screen;
  pointer-events: none;
}

.page-home .hero-stage::after {
  content: "";
  position: absolute;
  left: -12%;
  right: -12%;
  bottom: -6%;
  height: 52%;
  z-index: 3;
  background: linear-gradient(101deg,
    rgba(7, 26, 21, .95) 30%,
    rgba(23, 166, 151, .32) 30.5%,
    rgba(7, 26, 21, .1) 68%,
    transparent 100%);
  transform: rotate(-3deg);
  transform-origin: left bottom;
  pointer-events: none;
}

.page-home .hero-chart {
  position: absolute;
  inset: auto 6% 12% 6%;
  width: 88%;
  height: auto;
  z-index: 4;
}

.page-home .chart-line {
  fill: none;
  stroke: var(--orange);
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.page-home .chart-dot {
  fill: var(--cyan);
  stroke: var(--ink-deep);
  stroke-width: 2;
}

.page-home .hero-note {
  position: absolute;
  z-index: 5;
  top: 18px;
  right: 14px;
  margin: 0;
  color: var(--paper);
  font-size: var(--fs-1);
  letter-spacing: .12em;
}

/* ---------- 通用章节 ---------- */
.page-home .section {
  position: relative;
  padding-block: var(--home-pad);
}

.page-home .section-head {
  display: grid;
  gap: 14px;
  margin-bottom: var(--home-rhythm);
}

.page-home .section-num {
  display: block;
  font-size: clamp(38px, 6vw, 64px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: .02em;
  color: transparent;
  -webkit-text-stroke: 1px var(--cyan-2);
}

.page-home .band-paper .section-num,
.page-home .band-paper-white .section-num {
  -webkit-text-stroke: 1px var(--cyan-2);
}

.page-home .head-text {
  min-width: 0;
  border-top: 1px solid currentColor;
  padding-top: 16px;
}

.page-home .band-dark .head-text,
.page-home .band-pine .head-text {
  color: var(--line);
}

.page-home .band-paper .head-text,
.page-home .band-paper-white .head-text {
  color: var(--line-paper);
}

.page-home .section-kicker {
  font-size: var(--fs-1);
  letter-spacing: .12em;
  color: var(--cyan-2);
}

.page-home .band-paper .section-kicker,
.page-home .band-paper-white .section-kicker {
  color: var(--orange);
}

.page-home .section-title {
  margin-top: 10px;
  font-size: clamp(26px, 4vw, 44px);
  font-weight: 900;
  line-height: 1.18;
  letter-spacing: -.01em;
  max-width: 22ch;
}

.page-home .band-dark .section-title,
.page-home .band-pine .section-title {
  color: var(--paper);
}

.page-home .band-paper .section-title,
.page-home .band-paper-white .section-title {
  color: var(--graphite);
}

.page-home .band-dark .card-label,
.page-home .band-dark .card-note,
.page-home .band-pine .card-label,
.page-home .band-pine .card-note {
  color: var(--mist);
}

.page-home .band-paper .card-label,
.page-home .band-paper .card-note,
.page-home .band-paper-white .card-label,
.page-home .band-paper-white .card-note {
  color: rgba(16, 24, 21, .72);
}

.page-home .inline-link {
  color: var(--cyan);
  border-bottom: 1px solid rgba(59, 224, 200, .45);
  padding-bottom: 1px;
}

.page-home .inline-link:hover {
  color: var(--orange);
  border-bottom-color: rgba(255, 122, 61, .6);
}

/* ---------- 01 赛程时间轴 ---------- */
.page-home .rounds-head {
  position: relative;
}

.page-home .rounds-lede {
  margin-top: 16px;
  max-width: 52ch;
  color: var(--mist);
  line-height: 1.75;
}

.page-home .rounds-note {
  color: var(--cyan-2);
}

.page-home .timeline {
  position: relative;
  margin: 0;
  padding: 4px 0 4px 26px;
  list-style: none;
  border-left: 1px solid var(--line);
}

.page-home .timeline-item {
  position: relative;
  display: grid;
  grid-template-columns: minmax(78px, auto) minmax(64px, auto) 1fr auto;
  align-items: baseline;
  gap: 10px 18px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  transition: border-color var(--dur) var(--ease);
}

.page-home .timeline-item:last-child {
  border-bottom: 0;
}

.page-home .timeline-node {
  position: absolute;
  left: -32px;
  top: 24px;
  width: 11px;
  height: 11px;
  border: 1px solid var(--cyan-2);
  background: var(--ink);
  transform: rotate(45deg);
}

.page-home .timeline-item.is-current .timeline-node {
  border-color: var(--cyan);
  background: var(--cyan);
  box-shadow: 0 0 0 4px rgba(59, 224, 200, .16);
}

.page-home .timeline-item:hover {
  border-bottom-color: var(--cyan-2);
}

.page-home .timeline-round {
  font-size: var(--fs-2);
  letter-spacing: .06em;
  color: var(--mist);
}

.page-home .timeline-item.is-current .timeline-round {
  color: var(--cyan);
}

.page-home .timeline-time {
  font-size: clamp(18px, 2.2vw, 24px);
  font-weight: 700;
  color: var(--paper);
}

.page-home .timeline-match {
  min-width: 0;
  font-size: clamp(15px, 1.6vw, 17px);
  color: var(--paper);
}

.page-home .timeline-vs {
  color: var(--cyan-2);
  padding-inline: 4px;
  font-size: .9em;
}

.page-home .timeline-venue {
  justify-self: start;
  padding: 3px 9px;
  border: 1px solid var(--cyan-2);
  font-size: var(--fs-1);
  letter-spacing: .08em;
  color: var(--cyan);
  white-space: nowrap;
}

.page-home .timeline-venue--away {
  border-color: rgba(255, 179, 71, .55);
  color: var(--amber);
}

.page-home .rounds-foot {
  margin-top: 26px;
  color: var(--mist);
  font-size: var(--fs-2);
  line-height: 1.8;
}

/* ---------- 02 数据栏目 ---------- */
.page-home .stats-grid {
  display: grid;
  gap: 20px;
}

.page-home .stat-card {
  position: relative;
  display: grid;
  gap: 10px;
  align-content: start;
  padding: 22px;
  border: 1px solid var(--line-paper);
  background: var(--paper-white);
  transition: transform var(--dur) var(--ease), border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}

.page-home .stat-card--moss {
  background: rgba(20, 58, 46, .06);
}

.page-home .stat-card--amber {
  border-color: rgba(255, 122, 61, .34);
  background: rgba(255, 179, 71, .12);
}

.page-home .stat-card:hover {
  transform: translateY(-2px);
  border-color: var(--cyan-2);
  box-shadow: var(--shadow-1);
}

.page-home .stat-card--amber:hover {
  border-color: var(--orange);
}

.page-home .stat-photo {
  margin-bottom: 6px;
}

.page-home .stat-card .card-value {
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 700;
  line-height: 1.05;
  color: var(--graphite);
}

.page-home .stat-card .card-value--accent {
  color: var(--orange);
}

.page-home .stat-card .card-value--warm {
  color: var(--graphite);
}

.page-home .stat-card .card-label {
  font-size: var(--fs-1);
  letter-spacing: .12em;
  color: rgba(16, 24, 21, .6);
}

.page-home .stat-card .card-note {
  color: rgba(16, 24, 21, .74);
  line-height: 1.75;
  font-size: var(--fs-2);
}

.page-home .stat-bars {
  display: grid;
  gap: 6px;
  margin-top: 4px;
}

.page-home .stat-bars--single {
  gap: 0;
}

.page-home .bar {
  display: block;
  height: 5px;
  background: var(--cyan-2);
}

.page-home .bar-home {
  width: 78%;
}

.page-home .bar-away {
  width: 52%;
  background: var(--orange);
}

.page-home .stat-card:hover .bar-away {
  width: 78%;
  transition: width var(--dur) var(--ease);
}

.page-home .card-link {
  margin-top: 8px;
  justify-self: start;
  font-size: var(--fs-2);
  letter-spacing: .06em;
  color: var(--graphite);
  border-bottom: 1px solid rgba(16, 24, 21, .3);
  padding-bottom: 2px;
}

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

.page-home .card-link--warm:hover {
  color: var(--graphite);
  border-bottom-color: var(--graphite);
}

/* ---------- 03 服务路径 ---------- */
.page-home .path-inner {
  position: relative;
  display: grid;
  gap: var(--home-rhythm);
}

.page-home .path-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 2px;
  counter-reset: none;
}

.page-home .path-step {
  position: relative;
  padding: 22px 22px 22px 66px;
  border: 1px solid var(--line);
  background: rgba(20, 58, 46, .5);
  transition: border-color var(--dur) var(--ease), background var(--dur) var(--ease);
}

.page-home .path-step + .path-step::before {
  content: "";
  position: absolute;
  left: 32px;
  top: -2px;
  width: 1px;
  height: 2px;
  background: var(--line);
}

.page-home .path-step:hover {
  border-color: var(--cyan-2);
  background: rgba(20, 58, 46, .78);
}

.page-home .path-num {
  position: absolute;
  left: 20px;
  top: 24px;
  font-size: var(--fs-2);
  font-weight: 700;
  letter-spacing: .08em;
  color: var(--cyan);
}

.page-home .path-title {
  font-size: clamp(17px, 2vw, 20px);
  font-weight: 900;
  color: var(--paper);
}

.page-home .path-desc {
  margin-top: 8px;
  max-width: 56ch;
  color: var(--mist);
  font-size: var(--fs-2);
  line-height: 1.8;
}

.page-home .path-figure {
  margin: 0;
  border: 1px solid var(--line);
  background: var(--ink-deep);
  padding: 16px;
}

.page-home .path-figure img {
  display: block;
  width: 100%;
  height: auto;
  max-width: 100%;
  object-fit: cover;
  opacity: .82;
  filter: saturate(.8);
}

.page-home .path-figure .caption {
  margin-top: 12px;
  color: var(--mist);
  font-size: var(--fs-1);
  line-height: 1.7;
}

/* ---------- 04 谁在用 ---------- */
.page-home .who-grid {
  display: grid;
  gap: 20px;
}

.page-home .who-card {
  display: grid;
  gap: 10px;
  align-content: start;
  padding: 24px 22px;
  border: 1px solid var(--line-paper);
  background: var(--paper-white);
  transition: transform var(--dur) var(--ease), border-color var(--dur) var(--ease);
}

.page-home .who-card:hover {
  transform: translateY(-2px);
  border-color: var(--orange);
}

.page-home .who-card .card-label {
  font-size: var(--fs-1);
  letter-spacing: .12em;
  color: rgba(16, 24, 21, .58);
}

.page-home .who-title {
  font-size: clamp(19px, 2.2vw, 24px);
  font-weight: 900;
  line-height: 1.3;
  color: var(--graphite);
}

.page-home .who-text {
  color: rgba(16, 24, 21, .74);
  font-size: var(--fs-2);
  line-height: 1.8;
}

/* ---------- 05 合作与信任 ---------- */
.page-home .trust-grid {
  display: grid;
  gap: 18px;
}

.page-home .trust-block {
  padding: 20px;
  border: 1px solid var(--line);
  background: rgba(7, 26, 21, .45);
  transition: border-color var(--dur) var(--ease);
}

.page-home .trust-block:hover {
  border-color: var(--cyan-2);
}

.page-home .trust-label {
  font-size: var(--fs-1);
  letter-spacing: .12em;
  color: var(--mist);
}

.page-home .trust-figure {
  margin: 10px 0 0;
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  line-height: 1;
  color: var(--cyan);
}

.page-home .trust-note {
  margin-top: 12px;
  color: var(--mist);
  font-size: var(--fs-2);
  line-height: 1.8;
}

.page-home .trust-badges {
  margin-top: 26px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.page-home .trust-badges .tag {
  border-color: rgba(255, 179, 71, .5);
  color: var(--amber);
  padding: 5px 12px;
  font-size: var(--fs-1);
  letter-spacing: .06em;
  border-width: 1px;
  border-style: solid;
}

.page-home .trust-cta {
  margin-top: var(--home-rhythm);
  padding-top: 26px;
  border-top: 1px solid var(--line);
  display: grid;
  gap: 18px;
  justify-items: start;
}

.page-home .trust-cta-text {
  max-width: 46ch;
  color: var(--paper);
  font-size: clamp(16px, 1.8vw, 19px);
  line-height: 1.7;
}

/* ---------- 桌面端网格 ---------- */
@media (min-width: 720px) {
  .page-home .stats-grid,
  .page-home .who-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .page-home .path-inner {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 900px) {
  .page-home .hero-inner {
    grid-template-columns: 7fr 5fr;
    align-items: center;
  }

  .page-home .hero-figures {
    gap: 24px;
  }

  .page-home .section-head {
    grid-template-columns: minmax(80px, 120px) 1fr auto;
    align-items: start;
  }

  .page-home .rounds-head {
    grid-template-columns: minmax(80px, 120px) 1fr auto;
  }

  .page-home .stats-grid {
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: 22px;
  }

  .page-home .stats-grid > *:nth-child(1) {
    grid-column: 1 / 8;
  }

  .page-home .stats-grid > *:nth-child(2) {
    grid-column: 8 / 13;
    margin-top: 46px;
  }

  .page-home .stats-grid > *:nth-child(3) {
    grid-column: 2 / 7;
  }

  .page-home .stats-grid > *:nth-child(4) {
    grid-column: 7 / 13;
    margin-top: 34px;
  }

  .page-home .timeline {
    padding-left: 34px;
  }

  .page-home .timeline-node {
    left: -40px;
  }

  .page-home .path-inner {
    grid-template-columns: 1.35fr .85fr;
    align-items: start;
    column-gap: clamp(28px, 5vw, 72px);
  }

  .page-home .path-head {
    grid-column: 1 / -1;
  }

  .page-home .path-list {
    grid-column: 1 / 2;
  }

  .page-home .path-figure {
    grid-column: 2 / 3;
    margin-top: 8px;
  }

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

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

  .page-home .trust-cta {
    grid-template-columns: 1fr auto;
    align-items: center;
    justify-items: start;
  }

  .page-home .trust-cta .actions-row {
    margin: 0;
  }
}

@media (min-width: 1180px) {
  .page-home .stats-grid > *:nth-child(2) {
    margin-top: 64px;
  }

  .page-home .stats-grid > *:nth-child(4) {
    margin-top: 48px;
  }
}

/* ---------- 窄屏保护 ---------- */
@media (max-width: 719px) {
  .page-home .timeline-item {
    grid-template-columns: 1fr auto;
    row-gap: 6px;
  }

  .page-home .timeline-match {
    grid-column: 1 / -1;
  }

  .page-home .timeline-venue {
    grid-column: 2 / 3;
    justify-self: end;
  }

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

  .page-home .trust-grid {
    grid-template-columns: 1fr;
  }

  .page-home .stats-grid > * {
    margin-top: 0 !important;
  }
}

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

@media (prefers-reduced-motion: reduce) {
  .page-home .stat-card,
  .page-home .who-card,
  .page-home .path-step,
  .page-home .trust-block {
    transition: none;
  }

  .page-home .stat-card:hover,
  .page-home .who-card:hover {
    transform: none;
  }
}
<<<END>>>
</main>
