.page-home {
  --home-gap: clamp(22px, 3.4vw, 40px);
  --home-radius: 4px;
  --home-ink-soft: #33454F;
  background: var(--night);
  color: var(--ink);
  display: block;
}

.page-home a:focus-visible,
.page-home button:focus-visible {
  outline: 2px solid var(--mint);
  outline-offset: 2px;
}

/* ---------- 面包屑 ---------- */
.page-home .breadcrumb {
  padding-block: 14px 0;
}

.page-home .breadcrumb__list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 13px;
}

.page-home .breadcrumb__item {
  color: var(--muted);
}

.page-home .breadcrumb__item + .breadcrumb__item::before {
  content: "/";
  margin-right: 8px;
  color: var(--line);
}

.page-home .breadcrumb__link {
  color: var(--muted);
  text-decoration: none;
  border-bottom: 1px solid transparent;
}

.page-home .breadcrumb__link:hover,
.page-home .breadcrumb__link:focus-visible {
  color: var(--mint);
  border-bottom-color: var(--mint);
}

/* ---------- 首屏分屏 ---------- */
.page-home .hero {
  padding: clamp(18px, 3vw, 30px) 0 clamp(40px, 6vw, 76px);
}

.page-home .hero__grid {
  display: grid;
  gap: var(--home-gap);
}

.page-home .hero__eyebrow {
  margin: 0 0 14px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  color: var(--mint);
}

.page-home .hero__title {
  margin: 0 0 18px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(29px, 6.2vw, 54px);
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--ink);
}

.page-home .hero__lede {
  margin: 0 0 14px;
  max-width: 36em;
  font-size: clamp(15px, 1.6vw, 17px);
  line-height: 1.8;
  color: var(--ink);
}

.page-home .hero__sub {
  margin: 0 0 26px;
  max-width: 36em;
  font-size: 14px;
  line-height: 1.8;
  color: var(--muted);
}

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

.page-home .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 22px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  border: 1px solid transparent;
  border-radius: var(--home-radius);
  transition: transform 0.18s ease, background-color 0.18s ease, border-color 0.18s ease, color 0.18s ease;
}

.page-home .btn:hover {
  transform: translateY(-2px);
}

.page-home .btn--primary {
  background: var(--grass);
  color: var(--ink);
}

.page-home .btn--primary:hover {
  background: var(--mint);
  color: var(--night-deep);
}

.page-home .btn--gold {
  background: transparent;
  color: var(--gold);
  border-color: rgba(227, 179, 65, 0.55);
}

.page-home .btn--gold:hover {
  background: rgba(227, 179, 65, 0.14);
}

.page-home .hero__facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px 20px;
  margin: 0;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.page-home .hero__fact dt {
  font-size: 12px;
  letter-spacing: 0.06em;
  color: var(--muted);
}

.page-home .hero__fact dd {
  margin: 6px 0 0;
  font-size: 26px;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}

.page-home .hero__visual {
  position: relative;
  overflow: hidden;
  min-height: 320px;
  aspect-ratio: 4 / 3;
  border: 1px solid var(--line);
  border-radius: var(--home-radius);
  background: var(--night-deep);
}

.page-home .hero__visual img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.5;
}

.page-home .hero__visual::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(6, 14, 23, 0.3) 0%, rgba(6, 14, 23, 0.9) 100%);
}

.page-home .hero__pitch {
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: 0.65;
  background-image:
    linear-gradient(90deg, rgba(30, 122, 87, 0.4) 0 1px, transparent 1px 100%),
    linear-gradient(0deg, rgba(30, 122, 87, 0.3) 0 1px, transparent 1px 100%);
  background-size: 56px 56px, 56px 56px;
}

.page-home .hero__pitch::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 54%;
  aspect-ratio: 1 / 1;
  transform: translate(-50%, -50%);
  border: 2px solid rgba(56, 192, 138, 0.4);
  border-radius: 50%;
}

.page-home .hero__year {
  position: absolute;
  z-index: 2;
  left: clamp(16px, 3vw, 30px);
  bottom: 92px;
  margin: 0;
  font-family: var(--font-mono);
  font-size: clamp(56px, 15vw, 112px);
  font-weight: 800;
  line-height: 0.85;
  letter-spacing: -0.03em;
  background: linear-gradient(180deg, var(--gold) 10%, var(--mint) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ---------- 读秒窄条 ---------- */
.page-home .stoppage-strip {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 64px;
  padding: 0 16px;
  background: rgba(6, 14, 23, 0.78);
  border-top: 1px solid var(--line);
  backdrop-filter: blur(6px);
}

.page-home .hero__visual .stoppage-strip {
  position: absolute;
  z-index: 3;
  left: 0;
  right: 0;
  bottom: 0;
}

.page-home .stoppage-strip__label {
  font-size: 13px;
  color: var(--muted);
}

.page-home .stoppage-strip__readout {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-left: auto;
}

.page-home .stoppage-strip__min {
  font-family: var(--font-mono);
  font-size: 26px;
  font-weight: 700;
  color: var(--stoppage);
}

.page-home .stoppage-strip__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--stoppage);
  box-shadow: 0 0 0 4px rgba(224, 75, 42, 0.18);
  animation: home-pulse 1.7s ease-in-out infinite;
}

@keyframes home-pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(224, 75, 42, 0.16); }
  50% { box-shadow: 0 0 0 9px rgba(224, 75, 42, 0.04); }
}

@media (prefers-reduced-motion: reduce) {
  .page-home .stoppage-strip__dot { animation: none; }
  .page-home .btn:hover,
  .page-home .season-node:hover { transform: none; }
}

/* ---------- 标签 ---------- */
.page-home .tag {
  display: inline-flex;
  align-items: center;
  padding: 3px 9px;
  font-size: 12px;
  line-height: 1.6;
  border-radius: 2px;
  white-space: nowrap;
}

.page-home .tag--stoppage {
  color: var(--stoppage);
  background: rgba(224, 75, 42, 0.12);
  border: 1px solid rgba(224, 75, 42, 0.4);
}

/* ---------- 页面索引带 ---------- */
.page-home .page-index {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  padding: 14px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.page-home .page-index__link {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  font-size: 13px;
  color: var(--muted);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: color 0.18s ease, border-color 0.18s ease;
}

.page-home .page-index__link .mono {
  color: var(--grass);
  font-size: 12px;
}

.page-home .page-index__link:hover,
.page-home .page-index__link:focus-visible,
.page-home .page-index__link[aria-current="true"] {
  color: var(--mint);
  border-bottom-color: var(--mint);
}

/* ---------- 区块基础 ---------- */
.page-home .section {
  padding-block: clamp(44px, 6.5vw, 84px);
}

.page-home .section-head {
  display: grid;
  gap: 10px;
  margin-bottom: clamp(22px, 3vw, 36px);
}

.page-home .section-head__no {
  margin: 0;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  color: var(--grass);
}

.page-home .section-head__title {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(22px, 3.2vw, 34px);
  line-height: 1.22;
  color: var(--ink);
}

.page-home .section-head__lede {
  margin: 0;
  max-width: 42em;
  font-size: 15px;
  line-height: 1.8;
  color: var(--muted);
}

.page-home .track-note {
  margin: 16px 0 0;
  font-size: 13px;
  line-height: 1.8;
  color: var(--muted);
}

.page-home .text-link {
  color: var(--mint);
  text-decoration: none;
  border-bottom: 1px solid rgba(56, 192, 138, 0.5);
}

.page-home .text-link:hover,
.page-home .text-link:focus-visible {
  border-bottom-color: var(--mint);
}

/* ---------- 横向赛季时间轴 ---------- */
.page-home .timeline {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 0;
  overflow-x: auto;
  border-bottom: 1px solid var(--line);
  scroll-snap-type: x proximity;
}

.page-home .season-node {
  position: relative;
  flex: 0 0 auto;
  min-width: 134px;
  padding: 20px 14px 22px;
  border-top: 2px solid var(--line);
  background: linear-gradient(180deg, rgba(16, 51, 58, 0.55), rgba(10, 22, 34, 0));
  scroll-snap-align: start;
  transition: transform 0.18s ease, border-color 0.18s ease;
}

.page-home .season-node::after {
  content: "";
  position: absolute;
  left: 14px;
  top: -2px;
  width: 18px;
  height: 2px;
  background: var(--line);
  transition: background-color 0.18s ease, width 0.18s ease;
}

.page-home .season-node:hover {
  transform: translateY(-2px);
  border-top-color: var(--mint);
}

.page-home .season-node:hover::after {
  width: 34px;
  background: var(--mint);
}

.page-home .season-node__link {
  display: flex;
  flex-direction: column;
  gap: 7px;
  text-decoration: none;
  color: inherit;
}

.page-home .season-node__link:focus-visible {
  outline: 2px solid var(--mint);
  outline-offset: 4px;
}

.page-home .timeline__year {
  font-family: var(--font-mono);
  font-size: 21px;
  font-weight: 700;
  color: var(--ink);
}

.page-home .season-node__count {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--muted);
  transition: color 0.18s ease;
}

.page-home .season-node:hover .season-node__count {
  color: var(--mint);
}

.page-home .season-node__rep {
  align-self: flex-start;
  padding: 2px 7px;
  font-size: 12px;
  color: var(--gold);
  border: 1px dashed rgba(227, 179, 65, 0.42);
  border-radius: 2px;
}

/* ---------- 六类奖项 ---------- */
.page-home .award-layout {
  display: grid;
  gap: var(--home-gap);
}

.page-home .field-list {
  margin-bottom: 26px;
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: var(--home-radius);
  background: rgba(236, 244, 246, 0.04);
}

.page-home .field-list__title {
  margin: 0 0 12px;
  font-size: 12px;
  letter-spacing: 0.1em;
  color: var(--muted);
}

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

.page-home .field-list__items li {
  padding: 4px 10px;
  font-size: 13px;
  color: var(--ink);
  background: rgba(30, 122, 87, 0.22);
  border: 1px solid rgba(56, 192, 138, 0.28);
  border-radius: 2px;
}

.page-home .award-switch {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.page-home .filter__input {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  border: 0;
  white-space: nowrap;
}

.page-home .filter__label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 15px;
  font-size: 14px;
  color: var(--muted);
  background: rgba(16, 51, 58, 0.42);
  border: 1px solid var(--line);
  border-radius: 2px;
  cursor: pointer;
  transition: color 0.18s ease, border-color 0.18s ease, background-color 0.18s ease;
}

.page-home .filter__label svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.page-home .filter__label:hover {
  color: var(--ink);
  border-color: var(--mint);
}

.page-home .filter__input:checked + .filter__label {
  color: var(--ink);
  border-color: var(--gold);
  background: rgba(227, 179, 65, 0.13);
}

.page-home .filter__input:focus-visible + .filter__label {
  outline: 2px solid var(--mint);
  outline-offset: 2px;
}

.page-home .award-panels {
  flex-basis: 100%;
  margin-top: 20px;
}

.page-home .award-panel {
  display: none;
  gap: 10px;
  padding: 22px 20px;
  border: 1px solid var(--line);
  border-left: 3px solid var(--gold);
  border-radius: var(--home-radius);
  background: var(--glass);
}

.page-home #aw-player:checked ~ .award-panels .award-panel--player,
.page-home #aw-scorer:checked ~ .award-panels .award-panel--scorer,
.page-home #aw-coach:checked ~ .award-panels .award-panel--coach,
.page-home #aw-keeper:checked ~ .award-panels .award-panel--keeper,
.page-home #aw-newcomer:checked ~ .award-panels .award-panel--newcomer,
.page-home #aw-fair:checked ~ .award-panels .award-panel--fair {
  display: grid;
}

.page-home .award-panel__count {
  margin: 0;
  font-size: 13px;
  letter-spacing: 0.06em;
  color: var(--muted);
}

.page-home .award-panel__count .mono {
  margin-right: 4px;
  font-size: 24px;
  font-weight: 700;
  color: var(--gold);
}

.page-home .award-panel__text {
  margin: 0;
  max-width: 40em;
  font-size: 15px;
  line-height: 1.8;
  color: var(--ink);
}

.page-home .award-layout__aside {
  align-self: start;
}

/* ---------- 媒体容器 ---------- */
.page-home .media-frame {
  position: relative;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--home-radius);
  background: linear-gradient(160deg, var(--pitch), var(--night-deep));
}

.page-home .media-frame img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.page-home .media-frame--wide img {
  aspect-ratio: 8 / 5;
}

.page-home .media-frame--tall img {
  aspect-ratio: 3 / 4;
}

.page-home .media-frame__caption {
  margin: 0;
  padding: 10px 14px;
  font-size: 12px;
  line-height: 1.7;
  color: var(--muted);
  border-top: 1px solid var(--line);
}

/* ---------- 补时列表 ---------- */
.page-home .stoppage-list {
  display: grid;
  gap: 10px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.page-home .stoppage-strip--panel {
  border: 1px solid var(--line);
  border-radius: var(--home-radius);
  background: rgba(16, 51, 58, 0.38);
  backdrop-filter: none;
  transition: transform 0.18s ease, border-color 0.18s ease;
}

.page-home .stoppage-strip--panel:hover {
  transform: translateY(-2px);
  border-color: rgba(224, 75, 42, 0.5);
}

/* ---------- 日历状态板 ---------- */
.page-home .cal-board {
  display: grid;
  gap: var(--home-gap);
}

.page-home .cal-progress {
  padding: clamp(20px, 3vw, 30px);
  border: 1px solid var(--line);
  border-radius: var(--home-radius);
  background: linear-gradient(135deg, rgba(16, 51, 58, 0.75), rgba(10, 22, 34, 0.2));
}

.page-home .cal-progress__label {
  margin: 0 0 14px;
  font-size: 12px;
  letter-spacing: 0.12em;
  color: var(--muted);
}

.page-home .cal-progress__nums {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin: 0;
  font-family: var(--font-mono);
}

.page-home .cal-progress__now {
  font-size: clamp(42px, 8vw, 68px);
  font-weight: 800;
  line-height: 1;
  color: var(--gold);
}

.page-home .cal-progress__total {
  font-size: 14px;
  color: var(--muted);
}

.page-home .cal-progress__bar {
  margin-top: 20px;
  height: 8px;
  border-radius: 99px;
  background: var(--pitch);
  overflow: hidden;
}

.page-home .cal-progress__fill {
  display: block;
  width: 79%;
  height: 100%;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--grass), var(--mint));
}

.page-home .cal-progress__legend {
  margin: 14px 0 0;
  font-size: 13px;
  line-height: 1.7;
  color: var(--muted);
}

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

.page-home .status-item {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 12px;
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: var(--home-radius);
  background: rgba(236, 244, 246, 0.04);
}

.page-home .status-item__dot {
  width: 10px;
  height: 10px;
  margin-top: 6px;
  border-radius: 50%;
}

.page-home .status-item--ok .status-item__dot { background: var(--mint); }
.page-home .status-item--wait .status-item__dot { background: var(--gold); }
.page-home .status-item--move .status-item__dot { background: var(--stoppage); }

.page-home .status-item__name {
  margin: 0 0 4px;
  font-size: 15px;
  font-weight: 700;
  color: var(--ink);
}

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

/* ---------- 工具索引 ---------- */
.page-home .tools-index {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
  counter-reset: none;
}

.page-home .tools-index__row {
  border-bottom: 1px solid var(--line);
}

.page-home .tools-index__link {
  display: grid;
  gap: 6px;
  padding: 18px 6px;
  text-decoration: none;
  color: inherit;
  transition: background-color 0.18s ease, padding-left 0.18s ease;
}

.page-home .tools-index__link:hover,
.page-home .tools-index__link:focus-visible {
  background: var(--glass);
  padding-left: 14px;
}

.page-home .tools-index__no {
  font-size: 13px;
  color: var(--grass);
}

.page-home .tools-index__name {
  font-size: 17px;
  font-weight: 700;
  color: var(--ink);
}

.page-home .tools-index__desc {
  font-size: 14px;
  line-height: 1.75;
  color: var(--muted);
}

/* ---------- 档案纸色区块 ---------- */
.page-home .section--paper {
  background: var(--paper);
  color: var(--ink-on-paper);
}

.page-home .section--paper .section-head__no {
  color: var(--grass);
}

.page-home .section--paper .section-head__title {
  color: var(--ink-on-paper);
}

.page-home .trust-panel {
  display: grid;
  gap: var(--home-gap);
}

.page-home .trust-quote {
  margin: 0;
  padding-left: 18px;
  border-left: 3px solid var(--grass);
  font-size: clamp(17px, 2.1vw, 21px);
  font-weight: 500;
  line-height: 1.8;
  color: var(--ink-on-paper);
}

.page-home .trust-facts {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.page-home .trust-facts li {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 10px;
  font-size: 14px;
  line-height: 1.8;
  color: var(--home-ink-soft);
}

.page-home .trust-facts .mono {
  font-size: 13px;
  color: var(--grass);
}

.page-home .trust-more {
  margin: 24px 0 0;
  font-size: 14px;
  line-height: 1.8;
  color: var(--home-ink-soft);
}

.page-home .section--paper .text-link {
  color: var(--grass);
  border-bottom-color: rgba(30, 122, 87, 0.5);
}

.page-home .section--paper .text-link:hover,
.page-home .section--paper .text-link:focus-visible {
  border-bottom-color: var(--grass);
}

/* ---------- 订阅与反馈 ---------- */
.page-home .city-band {
  margin-bottom: var(--home-gap);
}

.page-home .feedback {
  display: grid;
  gap: var(--home-gap);
}

.page-home .feedback__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-content: start;
}

.page-home .feedback__note {
  flex-basis: 100%;
  margin: 4px 0 0;
  max-width: 34em;
  font-size: 13px;
  line-height: 1.8;
  color: var(--muted);
}

.page-home .contact-card {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--home-radius);
  background: var(--glass);
}

.page-home .contact-card__key {
  margin: 0 0 4px;
  font-size: 12px;
  letter-spacing: 0.12em;
  color: var(--muted);
}

.page-home .contact-card__key + .contact-card__key {
  margin-top: 18px;
}

.page-home .contact-card__val {
  margin: 0;
  font-size: 15px;
  color: var(--ink);
  word-break: break-all;
}

.page-home .contact-card__desc {
  margin: 18px 0 0;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  font-size: 13px;
  line-height: 1.8;
  color: var(--muted);
}

/* ---------- 响应式 ---------- */
@media (min-width: 700px) {
  .page-home .hero__facts {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .page-home .tools-index__link {
    grid-template-columns: 56px 190px minmax(0, 1fr);
    align-items: baseline;
    gap: 18px;
    padding: 20px 6px;
  }

  .page-home .feedback {
    grid-template-columns: minmax(0, 1fr) 340px;
    align-items: start;
  }
}

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

  .page-home .hero__visual {
    aspect-ratio: 5 / 6;
    min-height: 460px;
  }

  .page-home .award-layout {
    grid-template-columns: minmax(0, 1fr) 320px;
    align-items: start;
  }

  .page-home .cal-board {
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
    align-items: start;
  }

  .page-home .trust-panel {
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
    align-items: start;
  }
}

@media (min-width: 1200px) {
  .page-home .hero__grid {
    gap: clamp(36px, 4vw, 64px);
  }
}
