.page-home{
  --home-maxw: 1320px;
  --home-pad: clamp(16px, 4vw, 48px);
  display: block;
  padding: 0 var(--home-pad) clamp(48px, 8vw, 110px);
  color: var(--white);
  font-family: var(--font-body);
  line-height: 1.8;
}
.page-home > *{
  max-width: var(--home-maxw);
  margin-inline: auto;
}
.page-home h1,
.page-home h2,
.page-home h3{
  font-family: var(--font-display);
  line-height: 1.2;
  letter-spacing: -0.01em;
  margin: 0;
}
.page-home h1{ font-size: clamp(2rem, 5.2vw, 3.5rem); font-weight: 900; }
.page-home h2{ font-size: clamp(1.5rem, 3.2vw, 2.2rem); font-weight: 800; }
.page-home h3{ font-size: clamp(1.08rem, 1.9vw, 1.35rem); font-weight: 700; }
.page-home p{ margin: 0; }
.page-home figure{ margin: 0; }
.page-home img{ max-width: 100%; height: auto; }
.page-home section{ padding-block: clamp(36px, 6vw, 76px); }
.page-home section + section{ border-top: 1px solid var(--line); }

/* ---------- 首屏 ---------- */
.page-home .home-hero{
  display: grid;
  gap: clamp(24px, 4vw, 48px);
  align-items: center;
  padding-top: clamp(18px, 3vw, 36px);
}
@media (min-width: 920px){
  .page-home .home-hero{ grid-template-columns: minmax(0, 5fr) minmax(0, 7fr); }
}
.page-home .home-kicker{
  margin-bottom: 14px;
  font-size: 0.76rem;
  letter-spacing: 0.18em;
  color: var(--mist);
}
.page-home .home-hero-lead{
  margin-top: 18px;
  max-width: 44ch;
  font-size: clamp(1rem, 1.4vw, 1.1rem);
  color: #C9DED8;
}
.page-home .home-hero-actions{
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}
.page-home .home-stats{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px 16px;
  margin: 32px 0 0;
  padding: 22px 0 0;
  border-top: 1px solid var(--line);
}
@media (min-width: 620px){
  .page-home .home-stats{ grid-template-columns: repeat(4, minmax(0, 1fr)); }
}
.page-home .home-stat dt{
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  color: var(--stone);
}
.page-home .home-stat dd{
  margin: 8px 0 0;
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 6px;
}
.page-home .home-stat-num{
  font-family: var(--font-mono);
  font-size: clamp(1.3rem, 2.4vw, 1.7rem);
  line-height: 1;
  color: var(--cyan);
}
.page-home .home-stat-unit{
  font-size: 0.78rem;
  color: var(--stone);
}

.page-home .home-hero-visual{ position: relative; }
.page-home .home-hero-figure .yx-figure-media{
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 6px);
  overflow: hidden;
}
.page-home .home-hero-figure img{
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}
.page-home .home-hero-figure .yx-figure-caption{
  margin-top: 10px;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--stone);
}

.page-home .home-board{
  position: absolute;
  left: 0;
  bottom: clamp(26px, 6vw, 56px);
  width: min(78%, 360px);
  filter: drop-shadow(0 18px 42px rgba(0, 0, 0, 0.6));
}
.page-home .home-board .board-bg{
  fill: rgba(6, 23, 19, 0.9);
  stroke: var(--cyan);
  stroke-width: 1.5;
}
.page-home .home-board .board-ticks line{
  stroke: var(--line);
  stroke-width: 1.5;
}
.page-home .home-board .board-status{
  fill: var(--mist);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
}
.page-home .home-board .board-score{
  fill: var(--cyan);
  font-family: var(--font-mono);
  font-size: 42px;
  font-weight: 700;
}
.page-home .home-board .board-sep{
  fill: var(--stone);
  font-family: var(--font-mono);
  font-size: 28px;
}
.page-home .home-board .board-team{
  fill: var(--stone);
  font-family: var(--font-body);
  font-size: 13px;
  letter-spacing: 0.14em;
}
.page-home .home-board .board-delta path{
  fill: none;
  stroke: var(--amber);
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.page-home .home-board .board-delta-text{
  fill: var(--amber);
  font-family: var(--font-mono);
  font-size: 12px;
}

/* ---------- 四条主线 ---------- */
.page-home .home-lead{
  margin-top: 10px;
  max-width: 52ch;
  color: #C9DED8;
}
.page-home .home-line-list{
  list-style: none;
  position: relative;
  margin: clamp(28px, 4vw, 44px) 0 0;
  padding: 0;
  display: grid;
  gap: clamp(18px, 2.6vw, 28px);
}
.page-home .home-line{
  position: relative;
  display: grid;
  gap: 16px;
  padding: clamp(20px, 3vw, 30px);
  background: var(--turf);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.page-home .home-line:hover,
.page-home .home-line:focus-within{
  border-color: var(--cyan);
  box-shadow: 0 0 0 1px rgba(61, 240, 208, 0.2), 0 22px 44px -30px rgba(61, 240, 208, 0.7);
}
@media (min-width: 900px){
  .page-home .home-line{ grid-template-columns: 72px minmax(0, 1fr); align-items: start; }
  .page-home .home-line--media{ grid-template-columns: 72px minmax(0, 1fr) minmax(0, 320px); }
  .page-home .home-line-list::before{
    content: "";
    position: absolute;
    left: 27px;
    top: 40px;
    bottom: 40px;
    width: 1px;
    background: linear-gradient(180deg, rgba(61, 240, 208, 0.55), rgba(61, 240, 208, 0.04));
  }
}
.page-home .home-line-idx{
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 1px solid var(--cyan);
  background: rgba(61, 240, 208, 0.08);
  color: var(--cyan);
  font-size: 0.98rem;
  letter-spacing: 0.04em;
}
@media (min-width: 900px){
  .page-home .home-line-idx{ width: 56px; height: 56px; }
}
.page-home .home-line-body h3{
  margin-bottom: 10px;
  color: var(--white);
}
.page-home .home-line-body p{
  color: #C9DED8;
  font-size: 0.98rem;
}
.page-home .home-line-points{
  list-style: none;
  margin: 16px 0 0;
  padding: 0;
  display: grid;
  gap: 8px;
}
.page-home .home-line-points li{
  position: relative;
  padding-left: 20px;
  font-size: 0.92rem;
  color: var(--mist);
}
.page-home .home-line-points li::before{
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 10px;
  height: 1px;
  background: var(--cyan);
}
.page-home .home-line-link{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  padding-bottom: 2px;
  color: var(--cyan);
  font-size: 0.9rem;
  text-decoration: none;
  border-bottom: 1px solid rgba(61, 240, 208, 0.4);
}
.page-home .home-line-link::after{
  content: "→";
  font-family: var(--font-mono);
  transition: transform 0.3s var(--ease);
}
.page-home .home-line-link:hover::after{ transform: translateX(4px); }
.page-home .home-line-link:focus-visible{
  outline: 2px solid var(--cyan);
  outline-offset: 3px;
}
.page-home .home-line-media .yx-figure-media{
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
}
.page-home .home-line-media img{
  display: block;
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
}
.page-home .home-line-media .yx-figure-caption{
  margin-top: 8px;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--stone);
}

/* ---------- 赛季里程碑（浅色带） ---------- */
.page-home .home-timeline{
  margin-top: clamp(40px, 6vw, 80px);
  padding: clamp(26px, 4.5vw, 56px) clamp(18px, 3.5vw, 48px);
  background: var(--white);
  color: #10241F;
  border-top: 0;
  border-radius: clamp(18px, 3vw, 30px);
}
.page-home .home-timeline .yx-eyebrow{ color: #0A6B5C; }
.page-home .home-timeline h2{ color: #061713; }
.page-home .home-timeline .yx-section-head p{ color: #3B514B; }
.page-home .home-timeline-photo{ margin-bottom: clamp(22px, 3vw, 32px); }
.page-home .home-timeline-photo .yx-figure-media{
  border-radius: 18px;
  overflow: hidden;
}
.page-home .home-timeline-photo img{
  display: block;
  width: 100%;
  aspect-ratio: 16 / 7;
  object-fit: cover;
}
.page-home .home-timeline-photo .yx-figure-caption{
  margin-top: 8px;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: #5A6E68;
}
.page-home .home-timeline-scroll{
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 10px;
  outline-offset: 6px;
}
.page-home .home-timeline-scroll:focus-visible{
  outline: 2px solid #0A6B5C;
}
.page-home .home-season-track{
  list-style: none;
  margin: 0;
  padding: 4px 2px 10px;
  display: flex;
  gap: 14px;
  min-width: max-content;
}
.page-home .home-season{
  flex: 0 0 auto;
  width: clamp(190px, 62vw, 234px);
  scroll-snap-align: start;
  padding: 18px 18px 20px;
  background: #FFFFFF;
  border: 1px solid #CBD9D3;
  border-radius: 16px;
  transition: border-color 0.3s var(--ease), background 0.3s var(--ease);
}
.page-home .home-season:hover{ border-color: #0A6B5C; }
.page-home .home-season:target{
  border-color: var(--amber);
  background: #FFF8E6;
  box-shadow: 0 0 0 1px rgba(242, 179, 61, 0.45);
}
.page-home .home-season-link{
  display: block;
  color: inherit;
  text-decoration: none;
}
.page-home .home-season-link:focus-visible{
  outline: 2px solid #0A6B5C;
  outline-offset: 4px;
}
.page-home .home-season-year{
  display: block;
  font-family: var(--font-mono);
  font-size: clamp(1.45rem, 3.2vw, 1.95rem);
  line-height: 1.1;
  color: #0A6B5C;
  letter-spacing: -0.02em;
}
.page-home .home-season:target .home-season-year{ color: #A9700A; }
.page-home .home-season-label{
  display: block;
  margin-top: 6px;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  color: #5A6E68;
}
.page-home .home-season-note{
  margin-top: 12px;
  font-size: 0.86rem;
  line-height: 1.7;
  color: #3B514B;
}
.page-home .home-scroll-hint{
  margin-top: 6px;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  color: #5A6E68;
}

/* ---------- 三层筛选 ---------- */
.page-home .home-filter{
  display: grid;
  gap: clamp(24px, 4vw, 44px);
  align-items: start;
}
@media (min-width: 1000px){
  .page-home .home-filter{ grid-template-columns: minmax(0, 4fr) minmax(0, 8fr); }
}
.page-home .home-filter-copy > p{
  margin-top: 12px;
  max-width: 40ch;
  color: #C9DED8;
  font-size: 0.98rem;
}
.page-home .home-filter-points{
  list-style: none;
  margin: 22px 0 0;
  padding: 0;
  display: grid;
  gap: 12px;
}
.page-home .home-filter-points li{
  position: relative;
  padding-left: 24px;
  font-size: 0.94rem;
  color: var(--mist);
}
.page-home .home-filter-points li::before{
  content: "";
  position: absolute;
  left: 0;
  top: 0.74em;
  width: 14px;
  height: 1px;
  background: var(--amber);
}
.page-home .home-filter-links{
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.page-home .home-filter-demo{
  position: relative;
  display: grid;
  gap: 18px;
  padding: clamp(18px, 3vw, 28px);
  background: var(--turf);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.page-home .home-filter-radio{
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}
.page-home .home-filter-switch{
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.page-home .home-filter-switch label{
  cursor: pointer;
  padding: 8px 20px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
  color: var(--mist);
  font-size: 0.88rem;
  transition: color 0.25s var(--ease), border-color 0.25s var(--ease), background 0.25s var(--ease);
}
.page-home .home-filter-switch label:hover{ border-color: var(--mist); }
.page-home #layer-season:checked ~ .home-filter-switch label[for="layer-season"],
.page-home #layer-round:checked ~ .home-filter-switch label[for="layer-round"],
.page-home #layer-team:checked ~ .home-filter-switch label[for="layer-team"]{
  background: var(--cyan);
  border-color: var(--cyan);
  color: var(--ink);
  box-shadow: 0 0 0 3px rgba(61, 240, 208, 0.18);
}
.page-home #layer-season:focus-visible ~ .home-filter-switch label[for="layer-season"],
.page-home #layer-round:focus-visible ~ .home-filter-switch label[for="layer-round"],
.page-home #layer-team:focus-visible ~ .home-filter-switch label[for="layer-team"]{
  outline: 2px solid var(--cyan);
  outline-offset: 3px;
}
.page-home .home-filter-panels{ min-height: 122px; }
.page-home .home-filter-panel{
  display: none;
  padding: 18px;
  background: rgba(61, 240, 208, 0.07);
  border-left: 2px solid var(--cyan);
  border-radius: 14px;
}
.page-home #layer-season:checked ~ .home-filter-panels > [data-layer="season"],
.page-home #layer-round:checked ~ .home-filter-panels > [data-layer="round"],
.page-home #layer-team:checked ~ .home-filter-panels > [data-layer="team"]{
  display: block;
}
.page-home .home-filter-panel h3{
  margin-bottom: 8px;
  font-size: 1rem;
  color: var(--white);
}
.page-home .home-filter-panel p{
  font-size: 0.92rem;
  color: #C9DED8;
}
.page-home .home-filter-figure .yx-figure-media{
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
}
.page-home .home-filter-figure img{
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.page-home .home-filter-figure .yx-figure-caption{
  margin-top: 8px;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--stone);
}

/* ---------- 合作与纠错 ---------- */
.page-home .home-connect-grid{
  display: grid;
  gap: 16px;
  margin-top: clamp(26px, 4vw, 40px);
}
@media (min-width: 820px){
  .page-home .home-connect-grid{ grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
.page-home .home-connect-card{
  display: flex;
  flex-direction: column;
  padding: clamp(20px, 2.6vw, 28px);
  background: linear-gradient(160deg, rgba(15, 42, 35, 0.92), rgba(6, 23, 19, 0.92));
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.page-home .home-connect-card h3{ margin-bottom: 10px; color: var(--white); }
.page-home .home-connect-card p{
  flex: 1;
  font-size: 0.94rem;
  color: #C9DED8;
}
.page-home .home-contact{
  display: grid;
  gap: 18px;
  margin-top: clamp(26px, 4vw, 40px);
  padding: clamp(20px, 3vw, 30px);
  background: rgba(15, 42, 35, 0.55);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
@media (min-width: 760px){
  .page-home .home-contact{ grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
.page-home .home-contact-key{
  display: block;
  margin-bottom: 6px;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  color: var(--stone);
}
.page-home .home-contact-val{
  display: block;
  font-size: 0.94rem;
  color: var(--mist);
  word-break: break-word;
}
.page-home .home-contact-note{
  font-size: 0.84rem;
  color: var(--stone);
}
@media (min-width: 760px){
  .page-home .home-contact-note{ grid-column: 1 / -1; }
}
.page-home .home-next-links{
  margin-top: 18px;
  font-size: 0.9rem;
  color: var(--stone);
}
.page-home .home-next-links a{
  color: var(--cyan);
  text-decoration: none;
  border-bottom: 1px solid rgba(61, 240, 208, 0.4);
}
.page-home .home-next-links a:focus-visible{
  outline: 2px solid var(--cyan);
  outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce){
  .page-home *,
  .page-home *::before,
  .page-home *::after{
    transition: none !important;
    animation: none !important;
  }
}
<<<END>>>
