.page-home{
  --hc-cut-lg: 30px;
  --hc-cut-sm: 20px;
  --hc-cut-xs: 16px;
}

/* ---------- 首屏 ---------- */
.page-home .hc-hero{
  padding-top: 44px;
}

.page-home .hc-crumb{
  margin-bottom: 18px;
}

.page-home .hc-hero__wrap{
  display: grid;
  gap: 30px;
}

.page-home .hc-hero__side{
  max-width: 36ch;
}

.page-home .hc-hero__lead{
  margin-top: 16px;
  color: var(--muted);
}

@media (min-width: 900px){
  .page-home .hc-hero__wrap{
    grid-template-columns: minmax(0, .82fr) minmax(0, 1.18fr);
    align-items: center;
    gap: 46px;
  }
}

.page-home .hc-frame{
  position: relative;
  padding: 1px;
  background: linear-gradient(140deg, var(--glow) 0%, var(--line) 30%, var(--line) 72%, var(--amber) 100%);
  clip-path: polygon(0 0, calc(100% - var(--hc-cut-lg)) 0, 100% var(--hc-cut-lg), 100% 100%, var(--hc-cut-lg) 100%, 0 calc(100% - var(--hc-cut-lg)));
}

.page-home .hc-frame__in{
  position: relative;
  overflow: hidden;
  padding: 34px 24px 36px;
  background: rgba(7, 17, 14, .92);
  clip-path: polygon(0 0, calc(100% - 29px) 0, 100% 29px, 100% 100%, 29px 100%, 0 calc(100% - 29px));
}

.page-home .hc-frame__bg{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .24;
  filter: saturate(.65) brightness(.7);
}

.page-home .hc-frame__ticks{
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.page-home .hc-frame__ticks::before{
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 12px;
  background: repeating-linear-gradient(90deg, var(--line) 0 1px, transparent 1px 18px);
  opacity: .9;
}

.page-home .hc-frame__ticks::after{
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 12px;
  background: repeating-linear-gradient(180deg, var(--line) 0 1px, transparent 1px 18px);
  opacity: .9;
}

.page-home .hc-frame__body{
  position: relative;
  z-index: 1;
  display: grid;
  gap: 14px;
}

.page-home .hc-fixture{
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 12px;
  margin: 2px 0 0;
  font-size: clamp(1.5rem, 6vw, 2.15rem);
  font-weight: 800;
  letter-spacing: .02em;
  color: var(--text);
  line-height: 1.25;
}

.page-home .hc-fixture__vs{
  font-family: var(--font-mono);
  font-size: .5em;
  font-weight: 500;
  color: var(--muted);
}

.page-home .hc-fixture__meta{
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
}

.page-home .hc-count{
  display: grid;
  gap: 8px;
  margin-top: 8px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

.page-home .hc-count__n{
  margin: 0;
  font-family: var(--font-mono);
  font-size: clamp(2.4rem, 12vw, 4rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -.03em;
  font-variant-numeric: tabular-nums;
  color: var(--text);
}

.page-home .hc-count__sep{
  color: var(--dim);
}

.page-home .hc-count__sec{
  color: var(--amber);
}

.page-home .hc-count__note{
  margin: 0;
  font-size: .8rem;
  color: var(--muted);
}

/* ---------- 横向赛程带 ---------- */
.page-home .hc-lane__head{
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 20px;
}

.page-home .hc-lane__hint{
  margin: 0;
  font-family: var(--font-mono);
  font-size: .76rem;
  letter-spacing: .04em;
  color: var(--muted);
}

.page-home .hc-lane__shell{
  position: relative;
  padding: 14px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.page-home .hc-lane__bg{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .12;
}

.page-home .sp-lane.hc-lane{
  position: relative;
  z-index: 1;
  display: flex;
  gap: 14px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 8px 2px 18px;
  scrollbar-width: thin;
  scrollbar-color: var(--glow) var(--char);
}

.page-home .sp-lane.hc-lane::-webkit-scrollbar{
  height: 6px;
}

.page-home .sp-lane.hc-lane::-webkit-scrollbar-track{
  background: var(--char);
}

.page-home .sp-lane.hc-lane::-webkit-scrollbar-thumb{
  background: var(--glow);
}

.page-home .hc-tie{
  position: relative;
  flex: 0 0 auto;
  scroll-snap-align: start;
  width: min(76vw, 292px);
  padding: 18px 20px 20px;
  background: rgba(17, 22, 20, .92);
  box-shadow: inset 0 0 0 1px var(--line);
  clip-path: polygon(0 0, calc(100% - var(--hc-cut-xs)) 0, 100% var(--hc-cut-xs), 100% 100%, 0 100%);
  transition: background-color .16s var(--ease), box-shadow .16s var(--ease);
}

.page-home .hc-tie::before{
  content: "";
  position: absolute;
  left: 0;
  top: 14px;
  bottom: 14px;
  width: 3px;
  background: transparent;
  transition: background-color .16s var(--ease);
}

.page-home .hc-tie:hover,
.page-home .hc-tie:focus-within{
  background: rgba(14, 42, 42, .94);
  box-shadow: inset 0 0 0 1px var(--line);
}

.page-home .hc-tie:hover::before,
.page-home .hc-tie:focus-within::before{
  background: var(--glow);
}

.page-home .hc-tie__top{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.page-home .hc-tie__no{
  font-family: var(--font-mono);
  font-size: .76rem;
  letter-spacing: .08em;
  color: var(--glow);
}

.page-home .hc-tie__tag{
  font-family: var(--font-mono);
  font-size: .66rem;
  letter-spacing: .06em;
  color: var(--amber-2);
  background: rgba(255, 138, 61, .12);
  padding: 2px 7px;
}

.page-home .hc-tie__time{
  margin: 14px 0 6px;
  font-family: var(--font-mono);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--amber);
  font-variant-numeric: tabular-nums;
}

.page-home .hc-tie__match{
  margin: 0;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.5;
  color: var(--text);
}

.page-home .hc-tie__match span{
  font-size: .84em;
  font-weight: 400;
  color: var(--muted);
}

.page-home .hc-tie__venue{
  margin: 10px 0 0;
  font-size: .82rem;
  color: var(--muted);
}

/* ---------- 数据区 ---------- */
.page-home .hc-data__head{
  max-width: 46ch;
  margin-bottom: 22px;
}

.page-home .hc-data__media{
  margin: 0 0 20px;
}

.page-home .hc-data__grid{
  display: grid;
  gap: 16px;
}

@media (min-width: 860px){
  .page-home .hc-data__grid{
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 20px;
  }
}

.page-home .hc-panel{
  position: relative;
  padding: 22px 20px 24px;
  background: var(--char);
  box-shadow: inset 0 0 0 1px var(--line);
  clip-path: polygon(0 0, calc(100% - var(--hc-cut-sm)) 0, 100% var(--hc-cut-sm), 100% 100%, 0 100%);
}

.page-home .hc-panel__h{
  margin: 10px 0 0;
}

.page-home .hc-score{
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 10px;
  margin: 16px 0 20px;
}

.page-home .hc-score__t{
  font-size: 1.02rem;
  font-weight: 700;
  color: var(--text);
}

.page-home .hc-score__n{
  font-family: var(--font-mono);
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1;
  color: var(--glow);
  font-variant-numeric: tabular-nums;
}

.page-home .hc-score__d{
  font-family: var(--font-mono);
  font-size: 1.35rem;
  color: var(--dim);
}

.page-home .hc-hold{
  display: grid;
  margin: 0;
  border-top: 1px solid var(--line);
}

.page-home .hc-hold > div{
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 9px 0;
  border-bottom: 1px solid var(--line);
}

.page-home .hc-hold dt{
  font-size: .84rem;
  color: var(--muted);
}

.page-home .hc-hold dd{
  margin: 0;
  font-family: var(--font-mono);
  font-size: .88rem;
  color: var(--text);
  font-variant-numeric: tabular-nums;
}

.page-home .hc-gauge{
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 8px 14px;
  margin-top: 18px;
}

.page-home .hc-gauge__k{
  grid-column: 1 / -1;
  margin: 0;
  font-size: .82rem;
  color: var(--muted);
}

.page-home .hc-gauge__track{
  display: block;
  height: 10px;
  background: rgba(31, 58, 51, .75);
  overflow: hidden;
}

.page-home .hc-gauge__track i{
  display: block;
  height: 100%;
  background: var(--glow);
}

.page-home .hc-gauge--alt .hc-gauge__track i{
  background: var(--amber);
}

.page-home .hc-gauge__v{
  margin: 0;
  font-family: var(--font-mono);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  font-variant-numeric: tabular-nums;
}

.page-home .hc-panel__note{
  margin: 20px 0 0;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  font-size: .82rem;
  line-height: 1.75;
  color: var(--muted);
}

/* ---------- 订阅与收藏 ---------- */
.page-home .hc-sub__grid{
  display: grid;
  gap: 24px;
}

@media (min-width: 900px){
  .page-home .hc-sub__grid{
    grid-template-columns: minmax(0, .68fr) minmax(0, 1.32fr);
    gap: 34px;
    align-items: stretch;
  }
}

.page-home .hc-sub__media{
  margin: 0;
  min-height: 220px;
}

.page-home .hc-sub__media img{
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-home .hc-sub__body p{
  margin: 14px 0 0;
  line-height: 1.75;
  color: var(--muted);
}

.page-home .hc-sub__stats{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin: 22px 0;
  background: var(--line);
}

.page-home .hc-sub__stat{
  background: rgba(14, 42, 42, .55);
  padding: 14px 16px;
}

.page-home .hc-sub__stat dt{
  font-size: .76rem;
  color: var(--muted);
}

.page-home .hc-sub__stat dd{
  margin: 6px 0 0;
  font-family: var(--font-mono);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text);
  font-variant-numeric: tabular-nums;
}

.page-home .hc-sub__act{
  margin: 0;
}

/* ---------- 口径与节奏 ---------- */
.page-home .hc-notes__title{
  margin-bottom: 20px;
}

.page-home .hc-notes__grid{
  display: grid;
  gap: 1px;
  background: var(--line);
  margin-bottom: 20px;
}

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

.page-home .hc-note{
  background: var(--ink);
  padding: 20px 18px 22px;
}

.page-home .hc-note p{
  margin: 10px 0 0;
  font-size: .88rem;
  line-height: 1.75;
  color: var(--muted);
}

.page-home .hc-notes__link{
  margin: 0;
  font-size: .86rem;
  line-height: 1.8;
  color: var(--muted);
}

.page-home .hc-notes__link a{
  color: var(--glow);
}

/* ---------- 下一步 ---------- */
.page-home .hc-next__bar{
  display: grid;
  gap: 20px;
  padding: 26px 22px 28px;
  background: linear-gradient(120deg, var(--jade) 0%, var(--char) 64%);
  box-shadow: inset 0 0 0 1px var(--line);
  clip-path: polygon(0 0, calc(100% - 24px) 0, 100% 24px, 100% 100%, 0 100%);
}

@media (min-width: 760px){
  .page-home .hc-next__bar{
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 30px;
  }
}

.page-home .hc-next__note{
  margin: 10px 0 0;
  font-size: .88rem;
  line-height: 1.75;
  color: var(--muted);
}

.page-home .hc-next__act{
  margin: 0;
}
<<<END>>>
