.page-home {
  --home-line: rgba(36, 28, 22, .14);
  --home-line-soft: rgba(36, 28, 22, .08);
}

/* ---------------- 左缘赛季竖轴 ---------------- */
.page-home .home-rail {
  display: none;
}

@media (min-width: 1440px) {
  .page-home .home-rail {
    display: block;
    position: fixed;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 30;
    width: 56px;
    padding: 14px 8px 14px 10px;
    background: rgba(11, 27, 51, .9);
    border: 1px solid rgba(255, 255, 255, .14);
    backdrop-filter: blur(6px);
  }
}

.page-home .home-rail__label {
  display: block;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: .14em;
  color: rgba(255, 255, 255, .5);
  margin-bottom: 10px;
}

.page-home .home-rail__list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.page-home .home-rail__list li {
  margin: 0;
}

.page-home .home-rail__list a {
  display: block;
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: .04em;
  color: rgba(255, 255, 255, .56);
  text-decoration: none;
  padding: 6px 0 6px 9px;
  border-left: 2px solid transparent;
  transition: color .22s var(--ease), border-color .22s var(--ease);
}

.page-home .home-rail__list a:hover,
.page-home .home-rail__list a.is-active {
  color: #FFFFFF;
  border-left-color: var(--flag-red);
}

/* ---------------- 首屏 ---------------- */
.page-home .home-hero {
  position: relative;
  overflow: hidden;
  background: var(--ink);
  padding: calc(var(--header-h) + 44px) 0 60px;
}

.page-home .home-hero__bg,
.page-home .home-hero__grid {
  position: absolute;
  inset: 0;
}

.page-home .home-hero__bg img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .38;
}

.page-home .home-hero__grid {
  background-image:
    radial-gradient(rgba(255, 255, 255, .42) 1px, transparent 1.2px),
    radial-gradient(rgba(255, 255, 255, .2) 1px, transparent 1.2px);
  background-size: 34px 34px, 34px 34px;
  background-position: 0 0, 17px 17px;
  opacity: .5;
}

.page-home .home-hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 42%;
  background: linear-gradient(to bottom, rgba(11, 27, 51, 0), var(--ink));
  pointer-events: none;
  z-index: 1;
}

.page-home .home-hero__inner {
  position: relative;
  z-index: 2;
}

.page-home .home-hero .eyebrow {
  color: var(--flag-yellow);
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: .12em;
}

.page-home .home-hero__title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(2.3rem, 7.2vw, 5.4rem);
  line-height: 1.05;
  letter-spacing: -.02em;
  color: var(--flag-white);
  margin: .26em 0 .34em;
  max-width: 15ch;
}

.page-home .home-hero__title em {
  font-style: normal;
  color: var(--flag-yellow);
  box-shadow: inset 0 -.12em 0 var(--flag-red);
}

.page-home .home-hero__lede {
  font-size: 17px;
  line-height: 1.85;
  color: rgba(255, 255, 255, .8);
  max-width: 44ch;
  margin: 0 0 28px;
}

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

.page-home .home-hero__finder {
  margin-top: 34px;
  padding: 16px 18px 18px;
  border: 1px solid rgba(255, 255, 255, .3);
  background: rgba(11, 27, 51, .58);
  max-width: 620px;
}

.page-home .home-hero__finder .label-mono {
  display: block;
  color: rgba(255, 255, 255, .52);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .12em;
}

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

.page-home .home-hero__chips a {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: .06em;
  color: var(--flag-white);
  text-decoration: none;
  padding: 6px 10px;
  border: 1px solid rgba(255, 255, 255, .3);
  transition: background-color .2s var(--ease), border-color .2s var(--ease);
}

.page-home .home-hero__chips a:hover {
  background: var(--flag-blue);
  border-color: var(--flag-blue);
}

/* 首屏拼贴 */
.page-home .home-hero__collage {
  position: relative;
  z-index: 2;
  margin-top: 46px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: rgba(255, 255, 255, .18);
  border: 1px solid rgba(255, 255, 255, .18);
}

@media (min-width: 760px) {
  .page-home .home-hero__collage {
    grid-template-columns: 3fr 2fr 2fr 3fr;
  }
}

.page-home .home-tile {
  background: rgba(18, 41, 74, .84);
  padding: 22px 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-height: 150px;
  border-top: 3px solid var(--flag-blue);
  transition: transform .24s var(--ease), background-color .24s var(--ease);
}

.page-home .home-tile:hover {
  transform: translateY(-5px);
  background: rgba(26, 58, 102, .96);
}

.page-home .home-tile--red { border-top-color: var(--flag-red); }
.page-home .home-tile--yellow { border-top-color: var(--flag-yellow); }
.page-home .home-tile--green { border-top-color: var(--flag-green); }

.page-home .home-tile__num {
  font-family: var(--font-mono);
  font-size: 2.1rem;
  line-height: 1;
  letter-spacing: -.01em;
  color: var(--flag-white);
}

.page-home .home-tile__num small {
  font-size: .4em;
  letter-spacing: .06em;
  color: rgba(255, 255, 255, .58);
  margin-left: 7px;
}

.page-home .home-tile__title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.02rem;
  line-height: 1.4;
  color: var(--flag-white);
  margin: 0;
}

.page-home .home-tile__text {
  font-size: 13.5px;
  line-height: 1.72;
  color: rgba(255, 255, 255, .66);
  margin: 0;
}

/* ---------------- 通用小标题 ---------------- */
.page-home .home-head {
  max-width: 46rem;
  margin-bottom: 36px;
}

.page-home .home-head h2 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(1.55rem, 4vw, 2.4rem);
  line-height: 1.22;
  letter-spacing: -.02em;
  margin: .18em 0 .5em;
  color: var(--brown);
}

.page-home .home-head p {
  font-size: 16.5px;
  line-height: 1.85;
  margin: 0;
  color: rgba(36, 28, 22, .78);
}

.page-home .section--ink .home-head h2,
.page-home .section--deep .home-head h2 {
  color: var(--flag-white);
}

.page-home .section--ink .home-head p,
.page-home .section--deep .home-head p {
  color: rgba(255, 255, 255, .76);
}

.page-home .section--ink .home-head .eyebrow,
.page-home .section--deep .home-head .eyebrow {
  color: var(--flag-yellow);
}

/* ---------------- 赛季编号时间轴 ---------------- */
.page-home .home-timeline {
  list-style: none;
  margin: 0 0 0 6px;
  padding: 0 0 0 22px;
  border-left: 1px solid rgba(36, 28, 22, .2);
}

@media (min-width: 760px) {
  .page-home .home-timeline {
    margin-left: 14px;
    padding-left: 30px;
  }
}

.page-home .home-timeline__item {
  position: relative;
  padding-bottom: 36px;
}

.page-home .home-timeline__item:last-child {
  padding-bottom: 0;
}

.page-home .home-timeline__item::before {
  content: "";
  position: absolute;
  left: -26px;
  top: 8px;
  width: 9px;
  height: 9px;
  background: var(--flag-blue);
  border: 2px solid var(--paper);
  box-sizing: content-box;
  transition: background-color .22s var(--ease);
}

.page-home .home-timeline__item.is-active::before {
  background: var(--flag-red);
}

.page-home .home-timeline__item h3 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.12rem;
  line-height: 1.45;
  color: var(--brown);
  margin: 0 0 8px;
}

.page-home .home-timeline__item p {
  margin: 0;
  font-size: 15px;
  line-height: 1.82;
  color: rgba(36, 28, 22, .76);
}

.page-home .home-timeline__years {
  list-style: none;
  margin: 14px 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.page-home .home-timeline__years li {
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: .04em;
  color: #1B3E70;
  background: rgba(47, 111, 208, .1);
  border: 1px solid rgba(47, 111, 208, .28);
  padding: 4px 8px;
}

.page-home .home-timeline__years li.is-current {
  background: var(--flag-red);
  border-color: var(--flag-red);
  color: var(--flag-white);
}

/* ---------------- 三条主线 ---------------- */
.page-home .home-line {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 26px 0 0;
  border-top: 2px solid var(--flag-blue);
}

.page-home .home-line--yellow { border-top-color: var(--flag-yellow); }
.page-home .home-line--green { border-top-color: var(--flag-green); }

.page-home .home-line__index {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .16em;
  color: rgba(255, 255, 255, .5);
}

.page-home .home-line__title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.32rem;
  line-height: 1.35;
  color: var(--flag-white);
  margin: 0;
}

.page-home .home-line__text {
  font-size: 15px;
  line-height: 1.85;
  color: rgba(255, 255, 255, .72);
  margin: 0;
}

.page-home .home-line__specs {
  list-style: none;
  margin: 0;
  padding: 14px 0 0;
  border-top: 1px solid rgba(255, 255, 255, .16);
  display: grid;
  gap: 9px;
}

.page-home .home-line__specs li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  font-size: 13px;
  color: rgba(255, 255, 255, .58);
}

.page-home .home-line__specs b {
  font-family: var(--font-mono);
  font-weight: 500;
  font-size: 12.5px;
  color: var(--flag-white);
  text-align: right;
}

.page-home .home-line .link-more {
  margin-top: auto;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: .06em;
  color: var(--flag-yellow);
  text-decoration: none;
  border-bottom: 1px solid rgba(227, 160, 8, .45);
  align-self: flex-start;
  padding-bottom: 2px;
  transition: border-color .2s var(--ease), color .2s var(--ease);
}

.page-home .home-line .link-more:hover {
  color: var(--flag-white);
  border-color: var(--flag-white);
}

/* ---------------- 比对表 ---------------- */
.page-home .cmp-wrap {
  overflow-x: auto;
  border: 1px solid var(--home-line);
  background: var(--paper);
  -webkit-overflow-scrolling: touch;
}

.page-home .cmp-table {
  width: 100%;
  min-width: 640px;
  border-collapse: collapse;
  font-size: 14px;
}

.page-home .cmp-table caption {
  caption-side: top;
  text-align: left;
  padding: 14px 16px 12px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .1em;
  color: rgba(36, 28, 22, .58);
  background: var(--paper);
  border-bottom: 1px solid var(--home-line);
}

.page-home .cmp-table th {
  font-family: var(--font-mono);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: .08em;
  text-align: left;
  padding: 11px 16px;
  background: var(--cream);
  color: rgba(36, 28, 22, .68);
  border-bottom: 1px solid var(--home-line);
  white-space: nowrap;
}

.page-home .cmp-table td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--home-line-soft);
  color: rgba(36, 28, 22, .86);
  vertical-align: top;
  line-height: 1.6;
}

.page-home .cmp-table tbody tr:nth-child(even) {
  background: rgba(243, 233, 214, .5);
}

.page-home .cmp-table tbody tr:hover {
  background: rgba(47, 111, 208, .09);
}

.page-home .cmp-table tbody tr:last-child td {
  border-bottom: 0;
}

.page-home .cmp-league {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 15px;
  color: var(--brown);
  white-space: nowrap;
}

.page-home .cmp__brief {
  display: inline;
  font-family: var(--font-mono);
  font-size: 12px;
  color: rgba(36, 28, 22, .66);
}

.page-home .cmp__detail {
  display: none;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--flag-blue);
}

.page-home .cmp-table tbody tr:hover .cmp__brief {
  display: none;
}

.page-home .cmp-table tbody tr:hover .cmp__detail {
  display: inline;
}

.page-home .home-figure {
  margin: 34px auto 0;
  max-width: 760px;
}

.page-home .home-figure img {
  display: block;
  width: 100%;
  height: auto;
  border: 1px solid var(--home-line);
}

.page-home .media-frame__caption {
  font-size: 12.5px;
  line-height: 1.7;
  color: rgba(36, 28, 22, .6);
  margin-top: 10px;
}

.page-home .home-note-line {
  margin: 28px 0 0;
}

.page-home .btn--ink {
  color: var(--brown);
  border-color: rgba(36, 28, 22, .35);
}

.page-home .btn--ink:hover {
  border-color: var(--brown);
}

/* ---------------- 更新节奏 ---------------- */
.page-home .home-cadence {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: rgba(255, 255, 255, .16);
  border: 1px solid rgba(255, 255, 255, .16);
}

@media (min-width: 700px) {
  .page-home .home-cadence {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1060px) {
  .page-home .home-cadence {
    grid-template-columns: repeat(4, 1fr);
  }
}

.page-home .home-cadence__item {
  background: rgba(18, 41, 74, .9);
  padding: 26px 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.page-home .home-cadence__num {
  font-family: var(--font-mono);
  font-size: 1.9rem;
  line-height: 1;
  color: var(--flag-yellow);
}

.page-home .home-cadence__num small {
  font-size: .42em;
  letter-spacing: .06em;
  color: rgba(255, 255, 255, .6);
  margin-left: 6px;
}

.page-home .home-cadence__label {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1rem;
  color: var(--flag-white);
}

.page-home .home-cadence__text {
  margin: 0;
  font-size: 13.5px;
  line-height: 1.78;
  color: rgba(255, 255, 255, .66);
}

/* ---------------- 赛季手记条目 ---------------- */
.page-home .home-notes {
  border-top: 1px solid var(--home-line);
}

.page-home .home-note {
  display: grid;
  grid-template-columns: 1fr;
  gap: 6px;
  padding: 20px 0;
  border-bottom: 1px solid var(--home-line-soft);
  text-decoration: none;
  color: inherit;
  transition: background-color .22s var(--ease), padding-left .22s var(--ease);
}

@media (min-width: 820px) {
  .page-home .home-note {
    grid-template-columns: 120px 1fr 150px;
    align-items: baseline;
    gap: 22px;
    padding: 22px 14px 22px 0;
  }

  .page-home .home-note:hover {
    padding-left: 14px;
  }
}

.page-home .home-note:hover {
  background: rgba(47, 111, 208, .07);
}

.page-home .home-note__cat {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .12em;
  color: var(--flag-blue);
  display: block;
}

.page-home .home-note__body {
  display: block;
}

.page-home .home-note__title {
  display: block;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.03rem;
  line-height: 1.55;
  color: var(--brown);
}

.page-home .home-note__text {
  display: block;
  margin-top: 5px;
  font-size: 13.5px;
  line-height: 1.72;
  color: rgba(36, 28, 22, .68);
}

.page-home .home-note__time {
  display: block;
  font-family: var(--font-mono);
  font-size: 11.5px;
  color: var(--haze);
  white-space: nowrap;
}

/* ---------------- 季票 ---------------- */
.page-home .home-pass {
  display: grid;
  grid-template-columns: 1fr;
  gap: 34px;
  align-items: center;
}

@media (min-width: 900px) {
  .page-home .home-pass {
    grid-template-columns: 7fr 5fr;
    gap: 48px;
  }
}

.page-home .home-pass .eyebrow {
  color: var(--flag-yellow);
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: .12em;
}

.page-home .home-pass__title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(1.55rem, 4vw, 2.3rem);
  line-height: 1.24;
  letter-spacing: -.02em;
  color: var(--flag-white);
  margin: .2em 0 .5em;
}

.page-home .home-pass__lede {
  font-size: 16.5px;
  line-height: 1.85;
  color: rgba(255, 255, 255, .78);
  margin: 0 0 22px;
  max-width: 40ch;
}

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

.page-home .home-pass__list li {
  position: relative;
  padding-left: 20px;
  font-size: 15px;
  line-height: 1.75;
  color: rgba(255, 255, 255, .76);
}

.page-home .home-pass__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 8px;
  height: 8px;
  background: var(--flag-yellow);
}

.page-home .home-pass__contact {
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, .18);
  display: grid;
  gap: 11px;
}

.page-home .home-pass__row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: baseline;
  font-size: 14px;
}

.page-home .home-pass__key {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .12em;
  color: rgba(255, 255, 255, .48);
  min-width: 46px;
}

.page-home .home-pass__val {
  font-family: var(--font-mono);
  font-size: 13.5px;
  color: var(--flag-white);
  word-break: break-word;
}

.page-home .home-pass__val a {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, .35);
}

.page-home .home-pass__val a:hover {
  border-bottom-color: var(--flag-yellow);
}

.page-home .home-pass__note {
  margin: 6px 0 0;
  font-size: 12.5px;
  line-height: 1.75;
  color: rgba(255, 255, 255, .56);
  max-width: 46ch;
}

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

.page-home .home-pass__figure img {
  display: block;
  width: 100%;
  height: auto;
  border: 1px solid rgba(255, 255, 255, .2);
}

.page-home .home-pass__figure .media-frame__caption {
  color: rgba(255, 255, 255, .56);
}

/* ---------------- 内容路线 ---------------- */
.page-home .home-routes {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: var(--home-line);
  border: 1px solid var(--home-line);
}

@media (min-width: 640px) {
  .page-home .home-routes {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1000px) {
  .page-home .home-routes {
    grid-template-columns: repeat(3, 1fr);
  }
}

.page-home .home-route {
  display: block;
  background: var(--paper);
  padding: 24px 20px;
  text-decoration: none;
  transition: background-color .22s var(--ease);
}

.page-home .home-route:hover {
  background: var(--cream);
}

.page-home .home-route__title {
  display: block;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.08rem;
  color: var(--brown);
  margin-bottom: 8px;
}

.page-home .home-route__text {
  display: block;
  font-size: 13.5px;
  line-height: 1.75;
  color: rgba(36, 28, 22, .7);
}

/* ---------------- 图片兜底 ---------------- */
.page-home img {
  max-width: 100%;
  height: auto;
}

@media (max-width: 480px) {
  .page-home .home-hero {
    padding-top: calc(var(--header-h) + 28px);
  }

  .page-home .home-hero__title {
    font-size: clamp(2rem, 9.6vw, 2.6rem);
  }

  .page-home .home-hero__lede {
    font-size: 15.5px;
  }

  .page-home .home-tile {
    min-height: 0;
  }

  .page-home .home-cadence__item {
    padding: 22px 16px;
  }
}
