.page-home {
  --hp-grid: rgba(138, 143, 152, .11);
  --hp-edge: rgba(227, 178, 60, .30);
  --hp-card: rgba(25, 28, 36, .92);
  --hp-shadow: 0 26px 62px -36px rgba(0, 0, 0, .95);
  display: block;
}

.page-home img {
  max-width: 100%;
  height: auto;
}

.page-home .breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  padding: clamp(14px, 2.4vw, 22px) 0 clamp(6px, 1.4vw, 12px);
  font-size: .78rem;
  letter-spacing: .06em;
}

/* ---------- 首屏拼贴 ---------- */
.page-home .hero {
  position: relative;
  padding: clamp(6px, 1.6vw, 16px) 0 clamp(30px, 5vw, 58px);
  background-image:
    linear-gradient(var(--hp-grid) 1px, transparent 1px),
    linear-gradient(90deg, var(--hp-grid) 1px, transparent 1px);
  background-size: 88px 88px;
  background-position: center top;
}

.page-home .hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.page-home .hero-main {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  min-height: 420px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--ink-deep);
  box-shadow: var(--hp-shadow);
}

.page-home .hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .36;
  filter: saturate(.85) contrast(1.05);
}

.page-home .hero-main::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(18, 20, 26, .40) 0%, rgba(18, 20, 26, .74) 44%, rgba(12, 14, 19, .96) 100%);
}

.page-home .hero-copy {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: clamp(20px, 4vw, 44px);
}

.page-home .hero-copy h1 {
  margin: .3em 0 0;
  font-size: clamp(1.9rem, 6.4vw, 3.35rem);
  line-height: 1.16;
  font-weight: 800;
  letter-spacing: .01em;
  color: var(--gold-pale);
  text-shadow: 0 2px 28px rgba(227, 178, 60, .28), 0 2px 22px rgba(0, 0, 0, .8);
}

.page-home .hero-copy .lede {
  margin-top: .9em;
  max-width: 40ch;
  font-size: clamp(.94rem, 2.4vw, 1.02rem);
  line-height: 1.85;
  color: rgba(242, 234, 217, .82);
}

.page-home .countdown {
  margin-top: clamp(18px, 3vw, 26px);
  padding: clamp(14px, 2.4vw, 20px);
  border: 1px solid var(--hp-edge);
  border-radius: var(--radius);
  background: linear-gradient(140deg, rgba(18, 20, 26, .92), rgba(110, 31, 26, .48));
}

.page-home .countdown-label {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  font-size: .78rem;
  letter-spacing: .14em;
  color: var(--gold-pale);
}

.page-home .countdown-clock {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 4px;
  margin: 8px 0 0;
}

.page-home .countdown-clock .num {
  font-family: var(--font-mono);
  font-size: clamp(2rem, 8vw, 3.4rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -.02em;
  color: var(--gold);
  background: linear-gradient(180deg, var(--gold-pale), var(--gold));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.page-home .countdown-clock .unit {
  margin-right: 8px;
  font-size: .82rem;
  color: var(--stone);
}

.page-home .countdown-note {
  margin: 10px 0 0;
  font-size: .8rem;
  line-height: 1.7;
  color: var(--stone);
}

.page-home .hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: clamp(18px, 3vw, 24px);
}

.page-home .hero-side {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.page-home .hero-tile {
  position: relative;
  padding: clamp(16px, 2.8vw, 26px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(160deg, rgba(30, 33, 42, .95), rgba(16, 18, 24, .92));
  box-shadow: var(--hp-shadow);
  transition: transform .35s var(--ease), border-color .35s var(--ease);
}

.page-home .hero-tile::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 42px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), rgba(227, 178, 60, 0));
}

.page-home .hero-tile:hover {
  transform: translateY(-4px);
  border-color: var(--hp-edge);
}

.page-home .hero-tile .index-num {
  margin: 0;
  font-size: .72rem;
  letter-spacing: .16em;
  color: var(--stone);
}

.page-home .tile-value {
  margin: .28em 0 .12em;
  font-size: clamp(2.4rem, 9vw, 3.6rem);
  font-weight: 800;
  line-height: 1;
  color: var(--gold-pale);
}

.page-home .tile-value .plus {
  margin-left: 2px;
  font-size: .42em;
  color: var(--gold);
}

.page-home .tile-value .unit-sm {
  margin-left: 8px;
  font-size: .3em;
  color: var(--stone);
  letter-spacing: .06em;
}

.page-home .tile-label {
  margin: 0;
  font-size: .86rem;
  line-height: 1.75;
  color: var(--stone);
}

/* ---------- 赛程脉冲带 ---------- */
.page-home .section-note {
  margin: 0;
  font-size: .82rem;
  line-height: 1.7;
}

.page-home .pulse-wrap {
  overflow-x: auto;
  overflow-y: hidden;
  padding: 4px var(--gutter) 18px;
  scrollbar-width: thin;
  scrollbar-color: rgba(227, 178, 60, .45) transparent;
}

.page-home .pulse-wrap::-webkit-scrollbar {
  height: 6px;
}

.page-home .pulse-wrap::-webkit-scrollbar-thumb {
  background: rgba(227, 178, 60, .45);
  border-radius: 99px;
}

.page-home .pulse {
  display: flex;
  gap: 12px;
  min-width: max-content;
  margin: 0;
  padding: 0;
  list-style: none;
}

.page-home .pulse-item {
  flex: 0 0 auto;
  width: min(74vw, 246px);
  padding: 16px 16px 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(35, 38, 48, .92), rgba(18, 20, 26, .92));
  transition: transform .3s var(--ease), border-color .3s var(--ease);
}

.page-home .pulse-item:hover {
  transform: translateY(-3px);
  border-color: var(--hp-edge);
}

.page-home .pulse-time {
  display: block;
  font-size: 1.55rem;
  font-weight: 700;
  line-height: 1.1;
  color: var(--cyan);
}

.page-home .pulse-item .tag {
  display: inline-block;
  margin-top: 10px;
}

.page-home .pulse-name {
  margin: .6em 0 .3em;
  font-size: 1rem;
  font-weight: 600;
  color: var(--paper);
}

.page-home .pulse-meta {
  margin: 0;
  font-size: .78rem;
  line-height: 1.65;
  color: var(--stone);
}

/* ---------- 横向分隔 ---------- */
.page-home .band-sep {
  position: relative;
  overflow: hidden;
  margin: clamp(22px, 4vw, 46px) 0;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
}

.page-home .band-sep img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 240px;
  object-fit: cover;
  opacity: .7;
}

/* ---------- 签表直达 ---------- */
.page-home .chart-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(22px, 3.4vw, 42px);
}

.page-home .round-axis {
  display: flex;
  gap: 8px;
  margin: 0 0 16px;
  padding: 0;
  list-style: none;
}

.page-home .round-step {
  position: relative;
  flex: 1 1 0;
  min-width: 0;
  padding: 12px 4px 0;
  text-align: center;
  font-size: .76rem;
  letter-spacing: .04em;
  color: var(--stone);
  border-top: 1px solid rgba(138, 143, 152, .22);
  transition: color .45s var(--ease);
}

.page-home .round-step::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-pale));
  transition: width .55s var(--ease);
}

.page-home .round-step:nth-child(2)::before { transition-delay: .12s; }
.page-home .round-step:nth-child(3)::before { transition-delay: .24s; }
.page-home .round-step:nth-child(4)::before { transition-delay: .36s; }

.page-home .round-axis.is-visible .round-step {
  color: var(--gold-pale);
}

.page-home .round-axis.is-visible .round-step::before {
  width: 100%;
}

.page-home .chart-shot {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--ink-deep);
}

.page-home .chart-copy .chart-lede {
  margin: 0 0 4px;
  font-size: .96rem;
  line-height: 1.85;
  color: var(--stone);
}

.page-home .tabs {
  margin: 18px 0 0;
}

.page-home .tab-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.page-home .tab {
  appearance: none;
  padding: 9px 18px;
  font: inherit;
  font-size: .85rem;
  color: var(--stone);
  background: transparent;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  cursor: pointer;
  transition: color .25s var(--ease), background .25s var(--ease), border-color .25s var(--ease);
}

.page-home .tab:hover {
  color: var(--gold-pale);
  border-color: var(--hp-edge);
}

.page-home .tab[aria-selected="true"] {
  color: var(--ink);
  font-weight: 600;
  border-color: var(--gold);
  background: linear-gradient(180deg, var(--gold-pale), var(--gold));
}

.page-home .tab:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 2px;
}

.page-home .tab-panel {
  margin-top: 14px;
  font-size: .93rem;
  line-height: 1.85;
  color: var(--stone);
}

.page-home .tab-panel p {
  margin: 0;
}

.page-home .tab-panel[hidden] {
  display: none;
}

.page-home .chart-cta {
  margin: clamp(18px, 3vw, 26px) 0 0;
}

/* ---------- 双端支持 ---------- */
.page-home .support-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.page-home .support-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: clamp(18px, 2.8vw, 26px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(172deg, rgba(38, 41, 52, .78), rgba(16, 18, 24, .94));
  box-shadow: var(--hp-shadow);
  transition: transform .35s var(--ease), border-color .35s var(--ease);
}

.page-home .support-card:hover {
  transform: translateY(-5px);
  border-color: var(--hp-edge);
}

.page-home .support-card .tag {
  align-self: flex-start;
}

.page-home .support-card h3 {
  margin: .8em 0 .5em;
  font-size: clamp(1.08rem, 3vw, 1.2rem);
  line-height: 1.4;
  color: var(--paper);
}

.page-home .support-card p {
  margin: 0 0 16px;
  font-size: .92rem;
  line-height: 1.85;
  color: var(--stone);
}

.page-home .support-card--phone img {
  display: block;
  width: 100%;
  max-width: 100%;
  margin-bottom: 16px;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  object-fit: cover;
}

.page-home .link-more {
  margin-top: auto;
  align-self: flex-start;
  font-size: .87rem;
  color: var(--gold);
  text-decoration: none;
  border-bottom: 1px solid rgba(227, 178, 60, .42);
  padding-bottom: 2px;
  transition: color .25s var(--ease), border-color .25s var(--ease);
}

.page-home .link-more:hover {
  color: var(--gold-pale);
  border-color: var(--gold-pale);
}

/* ---------- 留下理由 ---------- */
.page-home .reason-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(22px, 3.4vw, 44px);
}

.page-home .reason-copy p {
  margin: 0 0 14px;
  font-size: .95rem;
  line-height: 1.9;
  color: var(--stone);
}

.page-home .stat-row.reason-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.page-home .reason-stats .stat {
  padding: clamp(14px, 2.2vw, 22px);
  border: 1px solid var(--line);
  border-top: 2px solid rgba(227, 178, 60, .35);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(30, 33, 42, .8), rgba(16, 18, 24, .9));
  transition: border-color .3s var(--ease), transform .3s var(--ease);
}

.page-home .reason-stats .stat:hover {
  transform: translateY(-3px);
  border-color: var(--hp-edge);
}

.page-home .reason-stats .stat-value {
  display: block;
  font-size: clamp(1.7rem, 5.6vw, 2.5rem);
  font-weight: 800;
  line-height: 1.05;
  color: var(--gold-pale);
}

.page-home .reason-stats .stat-plus {
  font-size: .5em;
  color: var(--gold);
}

.page-home .reason-stats .stat-unit {
  margin-left: 6px;
  font-size: .3em;
  color: var(--stone);
  letter-spacing: .06em;
}

.page-home .reason-stats .stat-label {
  display: block;
  margin-top: 8px;
  font-size: .8rem;
  line-height: 1.65;
  color: var(--stone);
}

/* ---------- 合作条 ---------- */
.page-home .closing-frame {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: clamp(20px, 3.2vw, 34px);
  border: 1px solid var(--line);
  border-left: 3px solid var(--red);
  border-radius: var(--radius);
  background: linear-gradient(120deg, rgba(110, 31, 26, .38), rgba(16, 18, 24, .94));
}

.page-home .closing-frame .section-title {
  margin: 0;
  font-size: clamp(1.2rem, 3.6vw, 1.7rem);
}

.page-home .closing-note {
  margin: 12px 0 0;
  max-width: 60ch;
  font-size: .92rem;
  line-height: 1.85;
  color: var(--stone);
}

/* ---------- 快捷收藏面板 ---------- */
.page-home .fav-panel {
  margin: 26px 0 8px;
  padding: 0 16px;
  border: 1px solid var(--hp-edge);
  border-radius: var(--radius);
  background: rgba(18, 20, 26, .94);
}

.page-home .fav-toggle {
  padding: 13px 0;
  font-size: .86rem;
  letter-spacing: .1em;
  color: var(--gold);
  cursor: pointer;
  list-style: none;
}

.page-home .fav-toggle::-webkit-details-marker {
  display: none;
}

.page-home .fav-toggle::before {
  content: "+";
  display: inline-block;
  width: 16px;
  color: var(--gold-pale);
}

.page-home .fav-panel[open] .fav-toggle::before {
  content: "−";
}

.page-home .fav-body {
  padding-bottom: 16px;
  font-size: .86rem;
  line-height: 1.7;
  color: var(--stone);
}

.page-home .fav-body p {
  margin: 0;
}

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

.page-home .fav-body a {
  display: inline-block;
  padding: 6px 12px;
  font-size: .82rem;
  color: var(--gold-pale);
  text-decoration: none;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: border-color .25s var(--ease), background .25s var(--ease);
}

.page-home .fav-body a:hover {
  border-color: var(--gold);
  background: rgba(227, 178, 60, .12);
}

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

  .page-home .pulse-item {
    width: 250px;
  }

  .page-home .band-sep img {
    max-height: 300px;
  }
}

@media (min-width: 960px) {
  .page-home .hero-grid {
    grid-template-columns: minmax(0, 1.45fr) minmax(0, .9fr);
    align-items: stretch;
  }

  .page-home .hero-side {
    grid-template-rows: repeat(2, minmax(0, 1fr));
  }

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

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

@media (min-width: 1040px) {
  .page-home .support-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: start;
  }

  .page-home .support-card--phone {
    margin-top: -18px;
  }

  .page-home .reason-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1180px) {
  .page-home .fav-panel {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 40;
    width: 236px;
    margin: 0;
    padding: 0 14px;
    box-shadow: var(--hp-shadow);
  }

  .page-home .fav-panel:not([open]) {
    width: 176px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .page-home .hero-tile,
  .page-home .pulse-item,
  .page-home .support-card,
  .page-home .reason-stats .stat {
    transition: none;
  }

  .page-home .round-step::before {
    transition: none;
  }
}
