/* ============================================
   page-home · 首页专属样式
   作用域：.page-home
   ============================================ */

.page-home {
  background: var(--paper);
  color: var(--ink);
  overflow-x: clip;
}

/* ---------- 通用小节节奏 ---------- */
.page-home .sched,
.page-home .split,
.page-home .year,
.page-home .crew,
.page-home .ref,
.page-home .pulse {
  padding: clamp(56px, 8vw, 118px) 0;
  position: relative;
}

/* ============================================
   01 · 首屏框景
   ============================================ */
.page-home .hero {
  padding: clamp(28px, 4vw, 56px) 0 clamp(40px, 6vw, 84px);
  background:
    radial-gradient(120% 90% at 92% 8%, rgba(43, 210, 255, .10), transparent 58%),
    linear-gradient(180deg, rgba(14, 59, 46, .04) 0%, transparent 40%),
    var(--paper);
}

.page-home .hero__frame {
  position: relative;
  border: 1px solid var(--line-strong);
  padding: clamp(24px, 3.4vw, 52px) clamp(20px, 3vw, 48px) clamp(24px, 3vw, 44px);
  background: var(--paper);
}

.page-home .hero__frame::before,
.page-home .hero__frame::after {
  content: "";
  position: absolute;
  left: -1px;
  right: -1px;
  height: 7px;
  background-image: repeating-linear-gradient(
    to right,
    var(--line-strong) 0 1px,
    transparent 1px 14px
  );
  background-position: 0 0;
  background-repeat: repeat-x;
  pointer-events: none;
}
.page-home .hero__frame::before { top: -4px; }
.page-home .hero__frame::after { bottom: -4px; }

.page-home .hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(24px, 3vw, 40px);
  align-items: center;
}

.page-home .hero__copy { min-width: 0; }

.page-home .hero__title {
  margin: 12px 0 0;
  font-family: var(--font-display);
  font-size: clamp(34px, 6.2vw, 62px);
  line-height: 1.08;
  letter-spacing: -0.01em;
  color: var(--deep-pitch);
}

.page-home .hero__title-accent {
  display: inline-block;
  position: relative;
  color: var(--pitch-mid);
  padding-bottom: 6px;
}
.page-home .hero__title-accent::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 44%;
  height: 4px;
  background: var(--orange);
}

.page-home .hero__lede {
  margin: 20px 0 0;
  max-width: 56ch;
  color: var(--graphite);
  font-size: clamp(15px, 1.4vw, 17px);
  line-height: 1.8;
}

.page-home .hero .btn-row {
  margin-top: clamp(22px, 3vw, 34px);
}

.page-home .hero__figure {
  margin: 0;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--pitch-mid);
  clip-path: polygon(0 3%, 100% 0, 100% 100%, 0 97%);
}
.page-home .hero__figure img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 8 / 5;
  object-fit: cover;
  filter: saturate(.9) contrast(1.05);
}
.page-home .hero__caption {
  position: absolute;
  left: 14px;
  bottom: 12px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: .06em;
  color: var(--warm-white);
  background: rgba(14, 59, 46, .72);
  padding: 5px 10px;
  max-width: calc(100% - 28px);
  line-height: 1.4;
}

/* 首屏指标 */
.page-home .hero__metrics {
  margin-top: clamp(26px, 3.6vw, 48px);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.page-home .hero__metric {
  padding: clamp(14px, 2vw, 24px) clamp(12px, 1.8vw, 22px);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 6px;
  transition:
    background var(--dur) var(--ease),
    border-color var(--dur) var(--ease);
}
.page-home .hero__metric:hover {
  background: rgba(43, 210, 255, .07);
  border-color: var(--blue);
}

.page-home .hero__metric-num {
  display: block;
  font-family: var(--font-mono);
  font-weight: 500;
  font-size: clamp(26px, 3.6vw, 40px);
  line-height: 1;
  color: var(--deep-pitch);
  letter-spacing: -0.02em;
  position: relative;
  padding-bottom: 8px;
}
.page-home .hero__metric-num::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 26px;
  height: 3px;
  background: var(--orange);
  transition: width var(--dur) var(--ease);
}
.page-home .hero__metric:hover .hero__metric-num::after { width: 60%; }

.page-home .hero__metric-suffix {
  font-size: .5em;
  margin-left: 2px;
  color: var(--pitch-mid);
}

.page-home .hero__metric-label {
  font-size: 13px;
  color: var(--graphite);
  letter-spacing: .02em;
}

/* ============================================
   02 · 排期索引
   ============================================ */
.page-home .sched { background: var(--paper); }

.page-home .sched__head { max-width: 66ch; }

.page-home .sched__index,
.page-home .split__index,
.page-home .crew__index,
.page-home .pulse__index {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: .14em;
  color: var(--orange-ink);
  padding-left: 20px;
  position: relative;
}
.page-home .sched__index::before,
.page-home .split__index::before,
.page-home .crew__index::before,
.page-home .pulse__index::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 12px;
  height: 2px;
  background: var(--orange);
  transform: translateY(-50%);
}

.page-home .sched__title,
.page-home .split__title,
.page-home .crew__title,
.page-home .ref__title,
.page-home .pulse__title,
.page-home .year__title {
  margin: 14px 0 0;
  font-family: var(--font-display);
  font-size: clamp(24px, 3.4vw, 38px);
  line-height: 1.22;
  letter-spacing: -0.005em;
  color: var(--deep-pitch);
}

.page-home .sched__note,
.page-home .split__note,
.page-home .crew__note,
.page-home .ref__note {
  margin: 14px 0 0;
  max-width: 68ch;
  color: var(--graphite);
  font-size: 16px;
  line-height: 1.78;
}

.page-home .sched__axis {
  margin-top: clamp(26px, 3.4vw, 42px);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line-strong);
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: .08em;
  color: var(--graphite);
}
.page-home .sched__axis span {
  position: relative;
  padding-left: 16px;
}
.page-home .sched__axis span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 6px;
  height: 6px;
  background: var(--orange);
  transform: translateY(-50%) rotate(45deg);
}

.page-home .sched__list {
  list-style: none;
  margin: clamp(18px, 2.4vw, 28px) 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 14px;
}

.page-home .sched__card {
  position: relative;
  background: #FFFFFF;
  border: 1px solid var(--line);
  border-left: 2px solid transparent;
  padding: 16px 16px 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 0;
  transition:
    transform var(--dur) var(--ease),
    border-color var(--dur) var(--ease),
    box-shadow var(--dur) var(--ease);
}
.page-home .sched__card:hover,
.page-home .sched__card:focus-within {
  transform: translateY(-2px);
  border-left-color: var(--green);
  box-shadow: var(--shadow-float);
}

.page-home .sched__card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
}

.page-home .sched__date {
  font-family: var(--font-mono);
  font-size: 18px;
  font-weight: 500;
  letter-spacing: .02em;
  color: var(--deep-pitch);
}

.page-home .sched__teams {
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 8px;
  font-size: 16px;
  color: var(--ink);
}
.page-home .sched__teams strong { font-weight: 700; }
.page-home .sched__teams em {
  font-family: var(--font-mono);
  font-style: normal;
  font-size: 12px;
  color: var(--mid-gray);
  letter-spacing: .1em;
}

.page-home .sched__meta {
  margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(82px, 1fr));
  gap: 8px 12px;
  padding-top: 10px;
  border-top: 1px solid var(--line);
}
.page-home .sched__meta dt {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .1em;
  color: var(--mid-gray);
  margin-bottom: 2px;
}
.page-home .sched__meta dd {
  margin: 0;
  font-size: 13px;
  color: var(--graphite);
}

.page-home .sched__reveal {
  margin: 0;
  padding-top: 0;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  border-top: 1px dashed transparent;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: .04em;
  color: var(--blue-ink);
  transition:
    max-height 180ms var(--ease),
    opacity 180ms var(--ease),
    padding-top 180ms var(--ease),
    border-color 180ms var(--ease);
}
.page-home .sched__card:hover .sched__reveal,
.page-home .sched__card:focus-within .sched__reveal {
  max-height: 56px;
  opacity: 1;
  padding-top: 10px;
  border-top-color: var(--line);
}

.page-home .sched__foot {
  margin-top: clamp(22px, 3vw, 34px);
  padding-top: 18px;
  border-top: 1px solid var(--line);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}
.page-home .sched__foot-note {
  margin: 0;
  font-size: 14px;
  color: var(--graphite);
}

/* ============================================
   03 · 半场拆分看板
   ============================================ */
.page-home .split {
  background:
    linear-gradient(180deg, rgba(30, 138, 99, .06), transparent 60%),
    var(--paper);
}

.page-home .split__grid {
  margin-top: clamp(26px, 3.4vw, 44px);
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(20px, 3vw, 40px);
  align-items: start;
}

.page-home .split__figure {
  margin: 0;
  border: 1px solid var(--line);
  background: var(--deep-pitch);
  overflow: hidden;
  position: relative;
}
.page-home .split__figure img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.page-home .split__figure figcaption {
  padding: 10px 14px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: .06em;
  color: var(--warm-white);
  background: var(--deep-pitch);
}

.page-home .split__panel {
  display: flex;
  flex-direction: column;
  gap: clamp(18px, 2.6vw, 28px);
  min-width: 0;
}

.page-home .split__dials {
  display: flex;
  gap: clamp(16px, 3vw, 32px);
  flex-wrap: wrap;
}

.page-home .split__dial {
  --v: 60;
  width: clamp(118px, 26vw, 156px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: conic-gradient(
    var(--pitch-light) calc(var(--v) * 1%),
    rgba(14, 59, 46, .12) 0
  );
  display: grid;
  place-items: center;
  position: relative;
  flex-shrink: 0;
}
.page-home .split__dial--alt {
  background: conic-gradient(
    var(--blue) calc(var(--v) * 1%),
    rgba(14, 59, 46, .12) 0
  );
}
.page-home .split__dial::after {
  content: "";
  position: absolute;
  inset: 13px;
  border-radius: 50%;
  background: var(--paper);
}
.page-home .split__dial-num {
  position: relative;
  z-index: 1;
  font-family: var(--font-mono);
  font-weight: 500;
  font-size: clamp(22px, 3vw, 30px);
  color: var(--deep-pitch);
  letter-spacing: -0.02em;
  line-height: 1;
}
.page-home .split__dial-sym {
  font-size: .55em;
  color: var(--pitch-mid);
}
.page-home .split__dial-cap {
  position: absolute;
  z-index: 1;
  bottom: 20%;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  text-align: center;
  font-size: 11px;
  line-height: 1.3;
  color: var(--graphite);
}

.page-home .split__facts {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid var(--line);
}
.page-home .split__fact {
  display: grid;
  grid-template-columns: 78px minmax(0, 1fr);
  gap: 14px;
  align-items: baseline;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}
.page-home .split__fact-key {
  font-family: var(--font-mono);
  font-size: 18px;
  font-weight: 500;
  color: var(--pitch-mid);
  letter-spacing: -0.01em;
}
.page-home .split__fact-txt {
  font-size: 14px;
  line-height: 1.72;
  color: var(--graphite);
}

/* ============================================
   04 · 年度同步锚点
   ============================================ */
.page-home .year {
  background:
    linear-gradient(180deg, rgba(255, 122, 26, .05), transparent 55%),
    var(--paper);
  border-top: 1px solid var(--line);
}

.page-home .year__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(22px, 3vw, 48px);
}

.page-home .year__rail {
  border-top: 2px solid var(--deep-pitch);
  padding-top: 12px;
}

.page-home .year__rail-kicker {
  margin: 0 0 10px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: .14em;
  color: var(--pitch-mid);
}

.page-home .year__list {
  list-style: none;
  margin: 0;
  padding: 0 0 8px;
  display: flex;
  gap: 6px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
}

.page-home .year__link {
  display: inline-block;
  flex: 0 0 auto;
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: .06em;
  color: var(--graphite);
  text-decoration: none;
  padding: 6px 12px;
  border: 1px solid var(--line);
  background: #FFFFFF;
  transition:
    color var(--dur) var(--ease),
    border-color var(--dur) var(--ease),
    background var(--dur) var(--ease),
    transform var(--dur) var(--ease);
}
.page-home .year__link:hover,
.page-home .year__link:focus-visible {
  color: var(--deep-pitch);
  border-color: var(--pitch-mid);
  transform: translateY(-1px);
}
.page-home .year__link[aria-current="true"] {
  color: var(--warm-white);
  background: var(--deep-pitch);
  border-color: var(--deep-pitch);
  box-shadow: inset 3px 0 0 var(--orange);
}

.page-home .year__body { min-width: 0; }

.page-home .year__lede {
  margin: 14px 0 0;
  max-width: 66ch;
  color: var(--graphite);
  font-size: 16px;
  line-height: 1.78;
}

.page-home .year__chips {
  list-style: none;
  margin: clamp(20px, 2.8vw, 30px) 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.page-home .year__chip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  background: #FFFFFF;
  border-left: 2px solid var(--green);
  transition:
    transform var(--dur) var(--ease),
    background var(--dur) var(--ease),
    border-left-color var(--dur) var(--ease);
}
.page-home .year__chip:hover {
  transform: translateY(-2px);
  background: rgba(55, 242, 160, .09);
  border-left-color: var(--deep-pitch);
}
.page-home .year__chip-year {
  font-family: var(--font-mono);
  font-size: 18px;
  font-weight: 500;
  color: var(--deep-pitch);
  letter-spacing: -0.01em;
}
.page-home .year__chip-tag {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .08em;
  color: var(--graphite);
  border: 1px solid var(--line);
  padding: 2px 7px;
}

.page-home .year__figure {
  margin: clamp(22px, 3vw, 34px) 0 0;
  border: 1px solid var(--line);
  overflow: hidden;
  clip-path: polygon(0 0, 100% 2%, 100% 100%, 0 98%);
}
.page-home .year__figure img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.page-home .year__figure figcaption {
  padding: 10px 14px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: .05em;
  color: var(--graphite);
  background: #FFFFFF;
  border-top: 1px solid var(--line);
}

/* ============================================
   05 · 教练履历与球队资料
   ============================================ */
.page-home .crew { background: var(--paper); }

.page-home .crew__head { max-width: 68ch; }

.page-home .crew__grid {
  margin-top: clamp(26px, 3.4vw, 44px);
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(16px, 2.4vw, 28px);
}

.page-home .crew__card {
  background: #FFFFFF;
  border: 1px solid var(--line);
  border-top: 3px solid var(--deep-pitch);
  padding: 0 0 20px;
  display: flex;
  flex-direction: column;
  min-width: 0;
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.page-home .crew__card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-float);
}

.page-home .crew__figure {
  margin: 0;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}
.page-home .crew__figure img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.page-home .crew__card-title {
  margin: 18px 20px 0;
  font-family: var(--font-display);
  font-size: 20px;
  line-height: 1.35;
  color: var(--deep-pitch);
}

.page-home .crew__fields {
  list-style: none;
  margin: 14px 20px 0;
  padding: 0;
}
.page-home .crew__fields li {
  position: relative;
  padding: 9px 0 9px 20px;
  border-bottom: 1px solid var(--line);
  font-size: 14.5px;
  line-height: 1.68;
  color: var(--graphite);
}
.page-home .crew__fields li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 17px;
  width: 10px;
  height: 2px;
  background: var(--orange);
}

.page-home .crew__card .btn-row {
  margin: 18px 20px 0;
}

/* ============================================
   06 · 控球率与补时参考
   ============================================ */
.page-home .ref {
  background: var(--deep-pitch);
  color: var(--warm-white);
  border-top: 1px solid var(--pitch-mid);
  border-bottom: 1px solid var(--pitch-mid);
  position: relative;
  overflow: hidden;
}
.page-home .ref::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(
      115deg,
      rgba(246, 243, 236, .045) 0 1px,
      transparent 1px 34px
    );
  pointer-events: none;
}

.page-home .ref .shell { position: relative; z-index: 1; }

.page-home .ref__head { max-width: 68ch; }

.page-home .ref__index {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: .14em;
  color: var(--green);
  padding-left: 20px;
  position: relative;
}
.page-home .ref__index::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 12px;
  height: 2px;
  background: var(--green);
  transform: translateY(-50%);
}

.page-home .ref__title { color: var(--warm-white); }

.page-home .ref__note {
  color: rgba(246, 243, 236, .78);
}

.page-home .ref__grid {
  margin-top: clamp(26px, 3.4vw, 44px);
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(18px, 2.6vw, 32px);
}

.page-home .ref__block {
  padding: clamp(20px, 2.6vw, 30px);
  border: 1px solid var(--line-invert);
  background: rgba(20, 22, 26, .14);
  min-width: 0;
}
.page-home .ref__block--dark {
  background: rgba(43, 210, 255, .06);
  border-color: var(--line-invert-strong);
}

.page-home .ref__block-label {
  margin: 0 0 18px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: .14em;
  color: var(--blue);
}

.page-home .ref__stops {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.page-home .ref__stop {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 6px 12px;
  align-items: center;
}

.page-home .ref__stop-bar {
  grid-column: 1 / -1;
  display: block;
  height: 6px;
  background: rgba(246, 243, 236, .14);
  position: relative;
  overflow: hidden;
}
.page-home .ref__stop-bar::after {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: calc(var(--w) * 1%);
  background: linear-gradient(90deg, var(--blue), var(--green));
  transition: width 240ms var(--ease);
}

.page-home .ref__stop-name {
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: .04em;
  color: var(--warm-white);
}
.page-home .ref__stop-tag {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .1em;
  color: rgba(246, 243, 236, .62);
}

.page-home .ref__times {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(110px, 1fr));
  gap: 14px;
}

.page-home .ref__time {
  padding: 16px 14px;
  border-left: 3px solid var(--orange);
  background: rgba(14, 59, 46, .42);
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.page-home .ref__time--alert {
  border-left-color: var(--alert);
}

.page-home .ref__time-num {
  font-family: var(--font-mono);
  font-weight: 500;
  font-size: 34px;
  line-height: 1;
  color: var(--warm-white);
  letter-spacing: -0.02em;
}
.page-home .ref__time-unit {
  font-size: .5em;
  margin-left: 2px;
  color: var(--green);
}
.page-home .ref__time-cap {
  font-size: 12px;
  letter-spacing: .04em;
  color: rgba(246, 243, 236, .74);
}

.page-home .ref .btn-row { margin-top: 22px; }

/* ============================================
   07 · 更新节奏与合作通道
   ============================================ */
.page-home .pulse { background: var(--paper); }

.page-home .pulse__head { max-width: 58ch; }

.page-home .pulse__grid {
  margin-top: clamp(24px, 3.2vw, 40px);
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(20px, 3vw, 40px);
}

.page-home .pulse__list {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line-strong);
}

.page-home .pulse__item {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
  align-items: baseline;
  transition: background var(--dur) var(--ease), padding-left var(--dur) var(--ease);
}
.page-home .pulse__item:hover {
  background: rgba(255, 122, 26, .06);
  padding-left: 8px;
}

.page-home .pulse__num {
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: .12em;
  color: var(--orange-ink);
}

.page-home .pulse__body {
  font-size: 15px;
  line-height: 1.78;
  color: var(--graphite);
}
.page-home .pulse__body strong {
  color: var(--deep-pitch);
  font-weight: 700;
  margin-right: 6px;
}

.page-home .pulse__contact {
  background: #FFFFFF;
  border: 1px solid var(--line);
  border-top: 3px solid var(--orange);
  padding: clamp(20px, 2.6vw, 30px);
  min-width: 0;
}

.page-home .pulse__contact-label {
  margin: 0;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: .14em;
  color: var(--orange-ink);
}

.page-home .pulse__contact-note {
  margin: 12px 0 18px;
  font-size: 14.5px;
  line-height: 1.76;
  color: var(--graphite);
}

.page-home .pulse__contact-row {
  margin: 0;
  padding: 10px 0;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr);
  gap: 12px;
  align-items: baseline;
}
.page-home .pulse__contact-key {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .12em;
  color: var(--mid-gray);
}
.page-home .pulse__contact-val {
  font-size: 14px;
  color: var(--ink);
  word-break: break-word;
  line-height: 1.6;
}

.page-home .pulse__contact .btn-row { margin-top: 20px; }

/* ============================================
   回到年度归档（浮动）
   ============================================ */
.page-home .to-year {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 30;
  display: none;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: .08em;
  text-decoration: none;
  color: var(--warm-white);
  background: var(--deep-pitch);
  border: 1px solid var(--pitch-mid);
  padding: 9px 14px;
  transition:
    background var(--dur) var(--ease),
    border-color var(--dur) var(--ease),
    transform var(--dur) var(--ease);
}
.page-home .to-year:hover,
.page-home .to-year:focus-visible {
  background: var(--orange);
  border-color: var(--orange);
  transform: translateY(-2px);
}

/* ============================================
   响应式
   ============================================ */
@media (min-width: 640px) {
  .page-home .hero__metrics {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  .page-home .sched__axis {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  .page-home .sched__list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .page-home .year__chips {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  .page-home .crew__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .page-home .to-year { display: inline-block; }
}

@media (min-width: 900px) {
  .page-home .hero__grid {
    grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
    gap: clamp(26px, 4vw, 60px);
    align-items: center;
  }

  .page-home .split__grid {
    grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
    gap: clamp(24px, 3.6vw, 52px);
  }

  .page-home .ref__grid {
    grid-template-columns: minmax(0, 1.18fr) minmax(0, 0.82fr);
  }

  .page-home .pulse__grid {
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  }
}

@media (min-width: 1024px) {
  .page-home .year__grid {
    grid-template-columns: 172px minmax(0, 1fr);
    gap: clamp(28px, 3.6vw, 56px);
    align-items: start;
  }

  .page-home .year__rail {
    position: sticky;
    top: calc(var(--header-h) + 20px);
  }

  .page-home .year__list {
    flex-direction: column;
    gap: 4px;
    overflow: visible;
    padding-bottom: 0;
  }

  .page-home .year__link {
    display: block;
    width: 100%;
  }
}

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

/* 触屏设备直接呈现提示行 */
@media (hover: none) {
  .page-home .sched__reveal {
    max-height: none;
    opacity: 1;
    padding-top: 10px;
    border-top-color: var(--line);
  }
  .page-home .sched__card:hover,
  .page-home .sched__card:focus-within {
    transform: none;
  }
}

/* 窄屏收紧 */
@media (max-width: 599px) {
  .page-home .hero__figure { clip-path: none; }
  .page-home .year__figure { clip-path: none; }
  .page-home .split__fact {
    grid-template-columns: minmax(0, 1fr);
    gap: 4px;
  }
  .page-home .split__dial-cap { bottom: 16%; font-size: 10px; }
}

/* 减弱动效偏好 */
@media (prefers-reduced-motion: reduce) {
  .page-home .hero__metric,
  .page-home .sched__card,
  .page-home .year__chip,
  .page-home .year__link,
  .page-home .crew__card,
  .page-home .pulse__item,
  .page-home .to-year,
  .page-home .sched__reveal,
  .page-home .ref__stop-bar::after {
    transition: none !important;
  }
  .page-home .sched__card:hover,
  .page-home .year__chip:hover,
  .page-home .crew__card:hover,
  .page-home .to-year:hover {
    transform: none;
  }
}

.page-home {
  --w: 1rem;
}
