.page-home {
  --home-hair: rgba(60, 90, 122, .55);
  --home-grid-line: rgba(60, 90, 122, .26);
  --home-panel: rgba(6, 18, 42, .68);
  --home-lede: rgba(242, 233, 216, .82);
  background: var(--deep);
  color: var(--paper);
  overflow-x: hidden;
}

/* ---------- 首屏拼贴 ---------- */

.page-home .hero-collage {
  position: relative;
  padding: 28px 0 8px;
  isolation: isolate;
}

.page-home .hero-collage::before {
  content: "";
  position: absolute;
  inset: -6% -8% 0;
  background-image:
    linear-gradient(var(--home-grid-line) 1px, transparent 1px),
    linear-gradient(90deg, var(--home-grid-line) 1px, transparent 1px);
  background-size: 56px 56px;
  -webkit-mask-image: radial-gradient(ellipse 72% 62% at 68% 26%, #000 8%, transparent 76%);
  mask-image: radial-gradient(ellipse 72% 62% at 68% 26%, #000 8%, transparent 76%);
  pointer-events: none;
  z-index: -1;
}

.page-home .hero-head {
  max-width: 800px;
  margin-bottom: 32px;
}

.page-home .hero-head .eyebrow {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--cyan);
}

.page-home .hero-head h1 {
  margin: 14px 0 16px;
  font-size: clamp(29px, 5.4vw, 52px);
  font-weight: 900;
  line-height: 1.14;
  letter-spacing: -0.02em;
  color: var(--paper);
}

.page-home .hero-head h1 em {
  font-style: normal;
  color: var(--cyan);
  box-shadow: inset 0 -0.26em 0 rgba(46, 242, 196, .18);
}

.page-home .hero-lede {
  max-width: 640px;
  font-size: 17px;
  line-height: 1.8;
  color: var(--home-lede);
}

.page-home .hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.page-home .hero-grid {
  display: grid;
  gap: 18px;
}

@media (min-width: 960px) {
  .page-home .hero-grid {
    grid-template-columns: minmax(200px, 3fr) 9fr;
    gap: 24px;
    align-items: start;
  }
}

/* 左窄栏 */

.page-home .rail-stack {
  display: grid;
  gap: 16px;
  align-content: start;
}

.page-home .id-card {
  padding: 18px 20px;
  border-radius: var(--radius-m);
  border: 1px solid rgba(36, 26, 18, .14);
  background: var(--paper);
  color: var(--ink);
  box-shadow: var(--shadow-1);
}

.page-home .id-card__label {
  display: block;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .16em;
  color: rgba(36, 26, 18, .58);
}

.page-home .id-card__value {
  display: block;
  margin-top: 8px;
  font-family: var(--font-mono);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: .01em;
  font-variant-numeric: tabular-nums;
}

.page-home .id-card__state {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
  font-size: 13px;
  font-weight: 700;
}

.page-home .id-card__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #0E9C7A;
  box-shadow: 0 0 0 4px rgba(46, 242, 196, .35);
}

.page-home .season-card {
  padding: 18px 20px;
  border-radius: var(--radius-m);
  border: 1px solid var(--home-hair);
  background: var(--home-panel);
}

.page-home .season-card__title {
  margin-bottom: 12px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: .14em;
  color: var(--cyan);
}

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

.page-home .season-card__list li {
  position: relative;
  padding-left: 16px;
  font-size: 14px;
  line-height: 1.7;
  color: var(--home-lede);
}

.page-home .season-card__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .7em;
  width: 7px;
  height: 1px;
  background: var(--cyan);
}

/* 右侧拼贴 */

.page-home .collage {
  display: grid;
  gap: 18px;
}

@media (min-width: 720px) {
  .page-home .collage {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }
  .page-home .tile--price { grid-column: span 6; }
  .page-home .tile--deadline { grid-column: span 2; }
  .page-home .tile--shot { grid-column: span 4; }
}

.page-home .tile {
  position: relative;
  border-radius: var(--radius-l);
  border: 1px solid var(--home-hair);
  background: var(--home-panel);
}

.page-home .tile--price {
  padding: 22px;
  background:
    radial-gradient(120% 150% at 100% 0%, rgba(46, 242, 196, .16), transparent 58%),
    linear-gradient(160deg, rgba(11, 31, 58, .96), rgba(6, 18, 42, .96));
}

.page-home .tile__label {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--cyan);
}

.page-home .price-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin-top: 18px;
}

@media (min-width: 620px) {
  .page-home .price-row {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.page-home .price-cell {
  display: block;
  padding: 16px 16px 18px;
  border-radius: var(--radius-m);
  border: 1px solid rgba(60, 90, 122, .6);
  background: rgba(6, 18, 42, .62);
  color: inherit;
  text-decoration: none;
  transition: border-color .2s ease, transform .2s ease, background .2s ease;
}

.page-home .price-cell:hover,
.page-home .price-cell:focus-visible {
  border-color: var(--cyan);
  background: rgba(11, 31, 58, .92);
  transform: translateY(-3px);
  outline: none;
}

.page-home .price-cell__name {
  display: block;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .04em;
  color: var(--paper);
}

.page-home .price-cell__num {
  display: block;
  margin: 10px 0 2px;
  font-family: var(--font-mono);
  font-size: clamp(38px, 6vw, 60px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.03em;
  font-variant-numeric: tabular-nums;
  color: var(--paper);
}

.page-home .price-cell--flag .price-cell__num {
  color: var(--cyan);
}

.page-home .price-cell__unit {
  display: block;
  font-size: 12px;
  letter-spacing: .06em;
  color: var(--muted);
}

.page-home .price-cell__more {
  margin-top: 12px;
  padding-top: 10px;
  border-top: 1px dashed rgba(60, 90, 122, .7);
  font-size: 13px;
  line-height: 1.7;
  color: var(--muted);
  transition: color .2s ease;
}

.page-home .price-cell:hover .price-cell__more,
.page-home .price-cell:focus-visible .price-cell__more {
  color: var(--home-lede);
}

.page-home .tile--deadline {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 10px;
  padding: 20px;
  border-color: rgba(216, 177, 90, .5);
  background: linear-gradient(170deg, rgba(216, 177, 90, .16), rgba(6, 18, 42, .92) 62%);
}

.page-home .deadline-num {
  font-family: var(--font-mono);
  font-size: clamp(28px, 4.6vw, 40px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
  color: var(--gold);
}

.page-home .tile__text {
  font-size: 13.5px;
  line-height: 1.7;
  color: var(--home-lede);
}

.page-home .tile--shot {
  position: relative;
  margin: 0;
  min-height: 220px;
  overflow: hidden;
  background: var(--deep-2);
}

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

.page-home .tile--shot figcaption {
  position: absolute;
  left: 16px;
  bottom: 16px;
  padding: 6px 14px;
  border-radius: var(--pill);
  border: 1px solid rgba(46, 242, 196, .4);
  background: rgba(6, 18, 42, .74);
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: .1em;
  color: var(--paper);
}

/* ---------- 赛季状态带 ---------- */

.page-home .status-band {
  position: relative;
  margin-top: 48px;
  overflow: hidden;
  border-top: 1px solid var(--home-hair);
  border-bottom: 1px solid var(--home-hair);
  background: var(--deep-2);
}

.page-home .status-band__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.page-home .status-band__bg img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .3;
}

.page-home .status-band__inner {
  position: relative;
  z-index: 1;
  padding-top: 44px;
  padding-bottom: 44px;
}

.page-home .status-band__title {
  margin-bottom: 30px;
  font-size: clamp(20px, 3vw, 30px);
  font-weight: 900;
  line-height: 1.25;
  letter-spacing: -0.01em;
}

.page-home .status-track {
  display: grid;
  gap: 22px;
  grid-template-columns: 1fr;
}

@media (min-width: 780px) {
  .page-home .status-track {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0;
  }
  .page-home .status-item {
    padding: 0 22px;
    border-left: 1px solid rgba(60, 90, 122, .55);
  }
  .page-home .status-item:first-child {
    padding-left: 0;
    border-left: 0;
  }
  .page-home .status-item:last-child {
    padding-right: 0;
  }
}

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

.page-home .status-item__name {
  margin: 10px 0 8px;
  font-size: 16px;
  font-weight: 700;
  color: var(--paper);
}

.page-home .status-item__meta {
  margin: 0;
  font-size: 14px;
  line-height: 1.75;
  color: var(--muted);
}

/* ---------- 通用区块 ---------- */

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

@media (min-width: 900px) {
  .page-home .section {
    padding: 82px 0;
  }
}

.page-home .section__head {
  display: grid;
  gap: 10px;
  margin-bottom: 30px;
}

@media (min-width: 860px) {
  .page-home .section__head {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: end;
    gap: 28px;
    margin-bottom: 36px;
  }
}

.page-home .section__head h2 {
  font-size: clamp(22px, 3.4vw, 36px);
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.page-home .section__lede {
  max-width: 430px;
  font-size: 15px;
  line-height: 1.7;
  color: var(--muted);
}

/* ---------- 四件事 ---------- */

.page-home .things-band {
  display: grid;
  gap: 18px;
}

@media (min-width: 920px) {
  .page-home .things-band {
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: 22px;
  }
  .page-home .thing--watch {
    grid-column: span 7;
    grid-row: span 2;
  }
  .page-home .thing--data { grid-column: span 5; }
  .page-home .thing--archive { grid-column: span 5; }
  .page-home .thing--biz { grid-column: span 12; }
}

.page-home .thing {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 22px;
  border-radius: var(--radius-l);
  border: 1px solid var(--home-hair);
  background: var(--home-panel);
}

.page-home .thing__kicker {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: .16em;
  color: var(--cyan);
}

.page-home .thing__title {
  font-size: clamp(18px, 2.4vw, 24px);
  font-weight: 900;
  line-height: 1.3;
  letter-spacing: -0.01em;
  color: var(--paper);
}

.page-home .thing__text {
  font-size: 15px;
  line-height: 1.8;
  color: var(--home-lede);
}

.page-home .thing__link {
  margin-top: auto;
  align-self: flex-start;
  padding-bottom: 3px;
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: .04em;
  color: var(--cyan);
  text-decoration: none;
  border-bottom: 1px solid rgba(46, 242, 196, .45);
  transition: border-color .2s ease, color .2s ease;
}

.page-home .thing__link:hover {
  color: #7FFADD;
  border-bottom-color: var(--cyan);
}

.page-home .thing--watch {
  gap: 0;
  padding: 0;
  overflow: hidden;
}

.page-home .thing--watch .thing__media img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.page-home .thing--watch .thing__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 10px;
  padding: 20px 22px 22px;
}

.page-home .thing--biz {
  border-color: rgba(255, 122, 60, .4);
  background: linear-gradient(100deg, rgba(255, 122, 60, .14), rgba(6, 18, 42, .82) 55%);
}

@media (min-width: 920px) {
  .page-home .thing--biz {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 10px 36px;
    padding: 26px 30px;
  }
  .page-home .thing--biz .thing__kicker,
  .page-home .thing--biz .thing__title,
  .page-home .thing--biz .thing__text {
    grid-column: 1;
  }
  .page-home .thing--biz .thing__link {
    grid-column: 2;
    grid-row: 1 / span 3;
    align-self: center;
    margin-top: 0;
  }
}

/* ---------- 联名墙 ---------- */

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

@media (min-width: 940px) {
  .page-home .wall-layout {
    grid-template-columns: 5fr 7fr;
    gap: 26px;
    align-items: start;
  }
}

.page-home .wall-figure {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius-l);
  border: 1px solid var(--home-hair);
  background: var(--deep-2);
}

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

.page-home .wall-figure figcaption {
  padding: 12px 18px;
  border-top: 1px solid var(--home-hair);
  background: rgba(6, 18, 42, .8);
  font-size: 12.5px;
  letter-spacing: .06em;
  color: var(--muted);
}

.page-home .wall-board {
  display: grid;
  gap: 16px;
  grid-template-columns: 1fr;
}

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

.page-home .wall-group {
  padding: 18px;
  border-radius: var(--radius-m);
  border: 1px solid var(--home-hair);
  background: var(--home-panel);
}

.page-home .wall-group__name {
  margin-bottom: 12px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .04em;
  color: var(--paper);
}

.page-home .wall-group__cells {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.page-home .wall-cell {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 46px;
  border-radius: var(--radius-s);
  border: 1px solid rgba(60, 90, 122, .6);
  background: rgba(6, 18, 42, .7);
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: .1em;
  color: var(--muted);
  transition: border-color .2s ease, color .2s ease, background .2s ease;
}

.page-home .wall-cell:hover {
  border-color: var(--cyan);
  color: var(--cyan);
  background: rgba(46, 242, 196, .08);
}

.page-home .wall-cert {
  margin-top: 20px;
  font-family: var(--font-mono);
  font-size: 12.5px;
  letter-spacing: .06em;
  color: var(--muted);
}

.page-home .wall-cert .mono {
  color: var(--gold);
}

/* ---------- 赛季笔记预览 ---------- */

.page-home .note-list {
  margin: 0;
  padding: 0;
  list-style: none;
  border-bottom: 1px solid rgba(60, 90, 122, .45);
}

.page-home .note-row {
  padding: 20px 0;
  border-top: 1px solid rgba(60, 90, 122, .45);
}

@media (min-width: 900px) {
  .page-home .note-row {
    display: grid;
    grid-template-columns: 200px minmax(0, 1.05fr) minmax(0, 1fr);
    gap: 28px;
    align-items: baseline;
    padding: 24px 0;
  }
}

.page-home .note-row__meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}

@media (min-width: 900px) {
  .page-home .note-row__meta {
    margin-bottom: 0;
  }
}

.page-home .note-row .tag {
  padding: 4px 10px;
  border-radius: var(--pill);
  border: 1px solid rgba(46, 242, 196, .45);
  background: rgba(46, 242, 196, .08);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .12em;
  color: var(--cyan);
}

.page-home .note-row__time {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: .08em;
  color: var(--muted);
}

.page-home .note-row__title {
  font-family: var(--font-serif);
  font-size: clamp(17px, 2.1vw, 21px);
  font-weight: 700;
  line-height: 1.5;
  color: var(--paper);
}

.page-home .note-row__desc {
  margin-top: 8px;
  font-size: 14.5px;
  line-height: 1.8;
  color: var(--home-lede);
}

@media (min-width: 900px) {
  .page-home .note-row__desc {
    margin-top: 0;
  }
}

.page-home .notes-more {
  display: inline-block;
  margin-top: 24px;
  padding-bottom: 3px;
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: .04em;
  color: var(--cyan);
  text-decoration: none;
  border-bottom: 1px solid rgba(46, 242, 196, .45);
  transition: border-color .2s ease;
}

.page-home .notes-more:hover {
  border-bottom-color: var(--cyan);
}

/* ---------- 开赛前三问 ---------- */

.page-home .accordion-stack {
  display: grid;
  gap: 12px;
}

.page-home .accordion-stack .accordion {
  overflow: hidden;
  border: 1px solid var(--home-hair);
  border-radius: var(--radius-m);
  background: var(--home-panel);
}

.page-home .accordion-stack .accordion__summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 22px;
  font-size: 16px;
  font-weight: 700;
  color: var(--paper);
  cursor: pointer;
  list-style: none;
}

.page-home .accordion-stack .accordion__summary::-webkit-details-marker {
  display: none;
}

.page-home .accordion-stack .accordion__summary::after {
  content: "+";
  flex: none;
  font-family: var(--font-mono);
  font-size: 20px;
  line-height: 1;
  color: var(--cyan);
}

.page-home .accordion-stack .accordion[open] .accordion__summary::after {
  content: "–";
}

.page-home .accordion-stack .accordion__body {
  display: grid;
  gap: 10px;
  padding: 0 22px 20px;
  font-size: 15px;
  line-height: 1.8;
  color: var(--home-lede);
}

.page-home .accordion-stack .accordion__body a {
  color: var(--cyan);
  text-decoration: none;
  border-bottom: 1px solid rgba(46, 242, 196, .45);
  padding-bottom: 2px;
}

/* ---------- 收口 ---------- */

.page-home .closing {
  padding: 8px 0 64px;
}

@media (min-width: 900px) {
  .page-home .closing {
    padding-bottom: 88px;
  }
}

.page-home .closing__inner {
  display: grid;
  gap: 20px;
  padding: 28px 24px;
  border-radius: var(--radius-l);
  border: 1px solid rgba(216, 177, 90, .38);
  background: linear-gradient(120deg, rgba(216, 177, 90, .14), rgba(6, 18, 42, .86) 58%);
}

@media (min-width: 900px) {
  .page-home .closing__inner {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 36px;
    padding: 36px 40px;
  }
}

.page-home .closing__title {
  margin-bottom: 10px;
  font-size: clamp(20px, 2.6vw, 28px);
  font-weight: 900;
  letter-spacing: -0.01em;
}

.page-home .closing__text {
  max-width: 62ch;
  font-size: 14.5px;
  line-height: 1.8;
  color: var(--home-lede);
}

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