.page-home {
  --home-cut: 18px;
  --home-line: rgba(184, 137, 43, .34);
  --home-line-soft: rgba(30, 90, 71, .22);
  --home-panel: #FBF7EE;
  --home-body: #3C534A;
  display: block;
  overflow-x: hidden;
  background: var(--ivory-050);
  color: var(--ink-900);
}

/* ---------- 首屏 ---------- */
.page-home .hero {
  position: relative;
  padding: clamp(38px, 6.5vw, 86px) 0 clamp(46px, 6.5vw, 94px);
  background:
    radial-gradient(120% 90% at 84% 10%, rgba(30, 90, 71, .62) 0%, rgba(10, 43, 34, 0) 62%),
    linear-gradient(168deg, var(--ink-900) 0%, var(--deep-950) 100%);
  color: var(--ivory-050);
}

.page-home .hero__grid {
  display: grid;
  gap: clamp(28px, 4vw, 44px);
  align-items: center;
}

@media (min-width: 980px) {
  .page-home .hero__grid {
    grid-template-columns: minmax(0, 4.6fr) minmax(0, 7.4fr);
    gap: clamp(32px, 4vw, 58px);
  }
}

.page-home .hero__context {
  margin: 0 0 18px;
  color: var(--gold-300);
  letter-spacing: .16em;
}

.page-home .hero__title {
  margin: 0 0 20px;
  max-width: 18em;
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(2.1rem, 4.8vw, 4.2rem);
  line-height: 1.08;
  letter-spacing: -.02em;
  color: var(--ivory-050);
  text-wrap: balance;
}

.page-home .hero__lede {
  max-width: 34em;
  margin: 0 0 26px;
  font-size: var(--body-fluid);
  line-height: 1.85;
  color: rgba(244, 239, 228, .8);
}

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

.page-home .hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 34px;
  margin: 30px 0 0;
  padding: 18px 0 0;
  list-style: none;
  border-top: 1px solid rgba(184, 137, 43, .28);
  font-family: var(--font-mono);
  font-size: .92rem;
  color: var(--ivory-050);
}

.page-home .hero__meta li {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.page-home .hero__meta .mono-index {
  color: rgba(244, 239, 228, .5);
}

.page-home .hero__visual {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--deep-950);
  clip-path: polygon(0 0, calc(100% - 30px) 0, 100% 30px, 100% 100%, 0 100%);
}

.page-home .hero__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .33;
  filter: saturate(.72) contrast(1.06);
}

.page-home .hero__board {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(to right, rgba(184, 137, 43, .28) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(184, 137, 43, .28) 1px, transparent 1px);
  background-size: 44px 44px;
  -webkit-mask-image: radial-gradient(78% 78% at 56% 44%, #000 28%, transparent 100%);
  mask-image: radial-gradient(78% 78% at 56% 44%, #000 28%, transparent 100%);
}

.page-home .hero__stones {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.page-home .stone {
  animation: home-pulse 4.2s ease-in-out infinite;
}

.page-home .stone--gold { fill: var(--gold-300); }
.page-home .stone--red { fill: var(--red-600); animation-delay: .6s; }
.page-home .stone--blue { fill: var(--blue-400); animation-delay: 1.2s; }

@keyframes home-pulse {
  0%, 100% { opacity: .42; }
  50% { opacity: 1; }
}

.page-home .hero__readout {
  position: absolute;
  left: clamp(14px, 3vw, 28px);
  bottom: clamp(14px, 3vw, 28px);
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 18px 12px 14px;
  background: rgba(6, 18, 15, .84);
  border: 1px solid rgba(184, 137, 43, .45);
  -webkit-backdrop-filter: blur(3px);
  backdrop-filter: blur(3px);
}

.page-home .hero__dial {
  width: 46px;
  height: 46px;
  flex: none;
}

.page-home .hero__dial circle {
  fill: none;
  stroke-width: 4;
  transform-origin: 60px 60px;
}

.page-home .dial-track { stroke: rgba(244, 239, 228, .16); }

.page-home .dial-arc {
  stroke: var(--blue-400);
  stroke-linecap: round;
  stroke-dasharray: 302;
  stroke-dashoffset: 302;
  animation: home-dial 300s linear infinite;
}

@keyframes home-dial {
  to { stroke-dashoffset: 0; }
}

.page-home .hero__readout-value {
  margin: 0;
  font-family: var(--font-mono);
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--gold-300);
}

.page-home .hero__readout-label {
  margin: 3px 0 0;
  font-size: .82rem;
  line-height: 1.5;
  color: rgba(244, 239, 228, .72);
}

/* ---------- 入口分发 ---------- */
.page-home .gate-grid {
  display: grid;
  gap: clamp(14px, 2vw, 22px);
  margin-top: clamp(28px, 4vw, 44px);
}

.page-home .gate {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: clamp(22px, 3vw, 30px);
  background: var(--home-panel);
  border: 1px solid var(--home-line);
  clip-path: polygon(0 0, calc(100% - var(--home-cut)) 0, 100% var(--home-cut), 100% 100%, var(--home-cut) 100%, 0 calc(100% - var(--home-cut)));
}

.page-home .gate::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 56px;
  height: 3px;
  background: var(--gold-600);
}

.page-home .gate__index {
  font-family: var(--font-mono);
  font-size: .8rem;
  letter-spacing: .16em;
  color: var(--gold-600);
}

.page-home .gate__title {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.2rem, 2vw, 1.55rem);
  line-height: 1.3;
  letter-spacing: -.01em;
  color: var(--ink-900);
}

.page-home .gate__body {
  margin: 0;
  font-size: .97rem;
  line-height: 1.78;
  color: var(--home-body);
}

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

.page-home .gate__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  padding-top: 12px;
  font-family: var(--font-mono);
  font-size: .85rem;
  letter-spacing: .05em;
  color: var(--ink-900);
  text-decoration: none;
  border-top: 1px solid var(--home-line-soft);
}

.page-home .gate__link span {
  transition: transform 160ms var(--ease);
}

.page-home .gate__link:hover span,
.page-home .gate__link:focus-visible span {
  transform: translateX(4px);
}

@media (min-width: 820px) {
  .page-home .gate-grid {
    grid-template-columns: repeat(12, minmax(0, 1fr));
  }
  .page-home .gate--a { grid-column: span 7; }
  .page-home .gate--b { grid-column: span 5; }
  .page-home .gate--c { grid-column: span 5; }
  .page-home .gate--d { grid-column: span 7; }
}

.page-home .screen-plate {
  display: grid;
  gap: 16px;
  margin: clamp(30px, 4vw, 52px) 0 0;
}

.page-home .screen-plate img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border: 1px solid var(--home-line);
}

.page-home .screen-plate figcaption {
  margin: 0;
  font-size: .93rem;
  line-height: 1.8;
  color: var(--home-body);
}

.page-home .screen-plate figcaption .mono-index {
  display: block;
  margin-bottom: 8px;
  color: var(--gold-600);
}

@media (min-width: 820px) {
  .page-home .screen-plate {
    grid-template-columns: minmax(0, 1.6fr) minmax(0, 1fr);
    align-items: center;
    gap: 26px;
  }
}

/* ---------- 赛季轨道 ---------- */
.page-home .section--ink {
  background: linear-gradient(180deg, var(--deep-950) 0%, var(--ink-900) 100%);
  color: var(--ivory-050);
}

.page-home .section--ink .section-title { color: var(--ivory-050); }
.page-home .section--ink .section-lede { color: rgba(244, 239, 228, .74); }
.page-home .section--ink .section-index { color: var(--gold-600); }
.page-home .section--ink .section-kicker { color: var(--gold-300); }

.page-home .season-track {
  margin-top: clamp(28px, 4vw, 48px);
  padding: 0;
  list-style: none;
}

.page-home .season-track .track__item {
  position: relative;
  display: block;
  padding: 0 0 clamp(28px, 4vw, 46px) 30px;
  border-left: 1px solid rgba(184, 137, 43, .42);
}

.page-home .season-track .track__item:last-child {
  padding-bottom: 0;
  border-left-color: transparent;
}

.page-home .season-track .track__node {
  position: absolute;
  left: -5px;
  top: 7px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--gold-600);
  box-shadow: 0 0 0 5px rgba(184, 137, 43, .16);
}

.page-home .season-track .track__item--now .track__node {
  background: var(--red-600);
  box-shadow: 0 0 0 5px rgba(192, 57, 43, .22);
}

.page-home .season-track .track__index {
  display: block;
  font-family: var(--font-mono);
  font-size: .86rem;
  letter-spacing: .14em;
  color: var(--gold-300);
}

.page-home .season-track .track__body {
  margin-top: 6px;
}

.page-home .season-track .track__body h3 {
  margin: 0 0 8px;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.14rem, 1.9vw, 1.5rem);
  line-height: 1.35;
  color: var(--ivory-050);
}

.page-home .season-track .track__body p {
  max-width: 62ch;
  margin: 0 0 14px;
  font-size: .96rem;
  line-height: 1.85;
  color: rgba(244, 239, 228, .76);
}

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

.page-home .season-mark {
  padding: 4px 11px;
  font-family: var(--font-mono);
  font-size: .73rem;
  letter-spacing: .07em;
  color: rgba(244, 239, 228, .82);
  border: 1px solid rgba(184, 137, 43, .36);
}

/* ---------- 数据口径 ---------- */
.page-home .proof {
  display: grid;
  gap: clamp(24px, 3vw, 40px);
  margin-top: clamp(28px, 4vw, 44px);
}

.page-home .proof__stats {
  display: grid;
  gap: 1px;
  background: var(--home-line-soft);
  border: 1px solid var(--home-line-soft);
}

.page-home .proof__stats .stat {
  padding: clamp(18px, 2.4vw, 26px);
  background: var(--ivory-050);
}

.page-home .proof__stats .stat__value {
  display: block;
  font-family: var(--font-mono);
  font-size: clamp(1.42rem, 2.8vw, 2.05rem);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -.01em;
  color: var(--ink-900);
}

.page-home .proof__stats .stat__label {
  display: block;
  margin-top: 10px;
  font-size: .86rem;
  line-height: 1.65;
  color: var(--home-body);
}

.page-home .proof__aside {
  display: grid;
  gap: 18px;
  align-content: start;
}

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

.page-home .proof__figure img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  border: 1px solid var(--home-line);
}

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

.page-home .proof__note {
  margin: 0;
  padding-top: 16px;
  border-top: 1px solid var(--home-line-soft);
  font-size: .9rem;
  line-height: 1.8;
  color: var(--home-body);
}

.page-home .proof__link {
  color: var(--ink-900);
  text-decoration: none;
  border-bottom: 1px solid var(--gold-600);
}

.page-home .proof__link:hover,
.page-home .proof__link:focus-visible {
  color: var(--gold-600);
}

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

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

/* ---------- 收束区 ---------- */
.page-home .closing {
  background: linear-gradient(180deg, var(--ivory-050) 0%, #EDE6D6 100%);
}

.page-home .closing__grid {
  display: grid;
  gap: clamp(24px, 3vw, 42px);
  align-items: center;
}

.page-home .closing__copy .section-index {
  display: block;
  color: var(--gold-600);
}

.page-home .closing__copy .section-kicker {
  color: var(--sage-500);
}

.page-home .closing__text {
  max-width: 36em;
  margin: 14px 0 24px;
  font-size: 1rem;
  line-height: 1.85;
  color: var(--home-body);
}

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

.page-home .closing__note {
  max-width: 38em;
  margin: 22px 0 0;
  padding-top: 16px;
  border-top: 1px solid var(--home-line-soft);
  font-size: .88rem;
  line-height: 1.8;
  color: var(--sage-500);
  word-break: break-word;
}

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

.page-home .closing__figure img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  border: 1px solid var(--home-line);
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - var(--home-cut)), calc(100% - var(--home-cut)) 100%, 0 100%);
}

@media (min-width: 900px) {
  .page-home .closing__grid {
    grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
    gap: clamp(32px, 4vw, 64px);
  }
}

/* ---------- 窄屏保护 ---------- */
@media (max-width: 520px) {
  .page-home .hero__readout {
    gap: 10px;
    padding: 10px 13px 10px 11px;
  }
  .page-home .hero__dial {
    width: 38px;
    height: 38px;
  }
  .page-home .hero__readout-value {
    font-size: .95rem;
  }
  .page-home .hero__meta {
    gap: 14px 24px;
    font-size: .86rem;
  }
  .page-home .season-track .track__item {
    padding-left: 22px;
  }
}

/* ---------- 降低动效 ---------- */
@media (prefers-reduced-motion: reduce) {
  .page-home .stone,
  .page-home .dial-arc {
    animation: none;
  }
  .page-home .dial-arc {
    stroke-dashoffset: 96;
  }
  .page-home .stone {
    opacity: .85;
  }
  .page-home .gate__link span {
    transition: none;
  }
}
<<<END>>>
