.page-home {
  --home-gap: clamp(1rem, 2vw, 1.5rem);
  --home-veil: linear-gradient(118deg, rgba(168, 56, 42, .93) 0%, rgba(168, 56, 42, .34) 38%, rgba(27, 36, 64, .87) 72%, rgba(20, 22, 28, .96) 100%);
  background: var(--paper);
  color: var(--ink);
}

/* ---------- 首屏 ---------- */

.page-home .hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding-top: calc(var(--header-h) + 2.25rem);
  padding-bottom: clamp(2.5rem, 5vw, 4rem);
  background: var(--night);
  color: var(--paper);
}

.page-home .hero-canvas,
.page-home .hero-veil {
  position: absolute;
  inset: 0;
}

.page-home .hero-canvas img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .32;
}

.page-home .hero-veil {
  background:
    var(--home-veil),
    repeating-linear-gradient(45deg, rgba(217, 164, 25, .06) 0 16px, rgba(0, 0, 0, 0) 16px 32px);
}

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

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

.page-home .hero-intro {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: .85rem;
}

.page-home .hero .eyebrow {
  color: var(--gold);
}

.page-home .hero-intro .display-title {
  margin: 0;
  max-width: 17ch;
  color: var(--paper);
}

.page-home .hero-intro .lede {
  margin: 0;
  max-width: 52ch;
  color: var(--paper-70);
}

.page-home .hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: .7rem;
  margin-top: .35rem;
}

/* 实时状态条 */

.page-home .hero-live {
  display: flex;
  flex-direction: column;
  gap: .6rem;
  padding: 1.1rem 1.15rem 1.2rem;
  background: rgba(20, 22, 28, .84);
  border: 3px solid var(--gold);
  box-shadow: 6px 6px 0 rgba(20, 22, 28, .55);
  color: var(--paper);
}

.page-home .live-top {
  display: flex;
  align-items: center;
  gap: .55rem;
  flex-wrap: wrap;
}

.page-home .live-pulse {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--emerald-bright);
  box-shadow: 0 0 0 0 rgba(18, 168, 122, .6);
  animation: home-pulse 1.8s var(--ease) infinite;
}

@keyframes home-pulse {
  0% { box-shadow: 0 0 0 0 rgba(18, 168, 122, .6); }
  100% { box-shadow: 0 0 0 12px rgba(18, 168, 122, 0); }
}

.page-home .live-clock {
  margin-left: auto;
  font-size: .78rem;
  letter-spacing: .06em;
  color: var(--paper-45);
}

.page-home .live-clock b {
  color: var(--paper);
}

.page-home .live-teams {
  margin: .1rem 0 0;
  font-size: 1.02rem;
  font-weight: 700;
  letter-spacing: .01em;
}

.page-home .live-teams span {
  color: var(--paper-45);
  font-weight: 400;
  margin: 0 .2rem;
}

.page-home .live-score {
  display: flex;
  align-items: baseline;
  gap: .22rem;
  margin: 0;
  font-family: var(--font-mono);
  font-size: clamp(2rem, 6vw, 2.9rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -.02em;
  color: var(--gold);
}

.page-home .live-score em {
  font-style: normal;
  font-size: .62em;
  color: var(--paper-45);
}

.page-home .live-meta {
  list-style: none;
  margin: .35rem 0 0;
  padding: 0;
  display: grid;
  gap: .35rem;
  font-size: .84rem;
}

.page-home .live-meta li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  padding-bottom: .32rem;
  border-bottom: 1px dashed rgba(244, 237, 226, .2);
}

.page-home .live-meta .k {
  color: var(--paper-45);
}

.page-home .live-meta .v {
  color: var(--paper);
  font-weight: 700;
}

/* 焦点比分块 */

.page-home .hero-focus {
  display: flex;
  flex-direction: column;
  gap: .4rem;
  padding: 1.1rem 1.25rem 1.25rem;
  background: var(--paper);
  color: var(--ink);
  border: 3px solid var(--ink);
  box-shadow: 7px 7px 0 var(--red);
  transition: transform .26s var(--ease), box-shadow .26s var(--ease);
}

.page-home .hero-focus:hover {
  transform: translate(-3px, -3px);
  box-shadow: 10px 10px 0 var(--red);
}

.page-home .focus-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .8rem;
  flex-wrap: wrap;
}

.page-home .focus-round {
  font-size: .78rem;
  letter-spacing: .08em;
  color: var(--slate);
}

.page-home .focus-score {
  display: flex;
  align-items: baseline;
  gap: .16rem;
  margin: .2rem 0 0;
  font-family: var(--font-mono);
  font-size: clamp(2.4rem, 9vw, 4rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -.03em;
  color: var(--night);
}

.page-home .focus-sep {
  font-size: .66em;
  color: var(--red);
}

.page-home .focus-teams {
  margin: 0;
  font-size: 1rem;
  font-weight: 900;
  font-family: var(--font-sans);
}

.page-home .focus-teams span {
  font-weight: 400;
  color: var(--slate);
  margin: 0 .15rem;
}

.page-home .focus-facts {
  margin: 0;
  font-size: .88rem;
  color: var(--slate);
}

.page-home .focus-facts b {
  color: var(--gold-deep);
}

.page-home .focus-link {
  align-self: flex-start;
  margin-top: .55rem;
  padding-bottom: 2px;
  color: var(--red);
  font-weight: 700;
  text-decoration: none;
  border-bottom: 2px solid var(--red);
  transition: color .2s var(--ease), border-color .2s var(--ease);
}

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

/* 两列入口块 */

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

.page-home .entry-card {
  display: flex;
  flex-direction: column;
  gap: .38rem;
  padding: 1.15rem 1.25rem 1.3rem;
  background: var(--paper);
  color: var(--ink);
  border: 3px solid var(--ink);
  box-shadow: 6px 6px 0 var(--gold);
  text-decoration: none;
  transition: transform .24s var(--ease), box-shadow .24s var(--ease);
}

.page-home .entry-card:hover,
.page-home .entry-card:focus-visible {
  transform: translate(-3px, -3px);
  box-shadow: 9px 9px 0 var(--gold);
}

.page-home .entry-card--night {
  background: var(--night);
  color: var(--paper);
  border-color: var(--gold);
  box-shadow: 6px 6px 0 var(--emerald);
}

.page-home .entry-card--night:hover,
.page-home .entry-card--night:focus-visible {
  box-shadow: 9px 9px 0 var(--emerald);
}

.page-home .entry-tag {
  font-family: var(--font-mono);
  font-size: .74rem;
  letter-spacing: .18em;
  color: var(--red);
}

.page-home .entry-card--night .entry-tag {
  color: var(--gold);
}

.page-home .entry-title {
  font-family: var(--font-sans);
  font-size: 1.24rem;
  font-weight: 900;
  line-height: 1.25;
}

.page-home .entry-desc {
  font-size: .92rem;
  line-height: 1.7;
  color: var(--slate);
}

.page-home .entry-card--night .entry-desc {
  color: var(--paper-70);
}

.page-home .entry-go {
  margin-top: auto;
  padding-top: .6rem;
  font-size: .86rem;
  font-weight: 700;
  letter-spacing: .04em;
}

/* ---------- 焦点场次速览 ---------- */

.page-home .focus-section {
  position: relative;
  overflow: hidden;
  background: var(--night);
  color: var(--paper);
}

.page-home .focus-bg {
  position: absolute;
  inset: 0;
}

.page-home .focus-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .24;
}

.page-home .focus-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(27, 36, 64, .92) 0%, rgba(20, 22, 28, .86) 60%, rgba(168, 56, 42, .5) 100%);
  pointer-events: none;
}

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

.page-home .focus-section .eyebrow {
  color: var(--gold);
}

.page-home .focus-section .section-title {
  color: var(--paper);
  max-width: 22ch;
}

.page-home .focus-lede {
  color: var(--paper-70);
}

.page-home .focus-list {
  display: grid;
  gap: 1rem;
  margin-top: 1.6rem;
}

.page-home .match-card {
  display: flex;
  flex-direction: column;
  gap: .5rem;
  padding: 1.1rem 1.15rem 1.2rem;
  background: rgba(20, 22, 28, .72);
  border: 3px solid rgba(244, 237, 226, .3);
  transition: transform .26s var(--ease), border-color .26s var(--ease);
}

.page-home .match-card:hover {
  transform: translateY(-5px);
  border-color: var(--gold);
}

.page-home .match-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .6rem;
  flex-wrap: wrap;
}

.page-home .match-round {
  font-family: var(--font-mono);
  font-size: .74rem;
  letter-spacing: .12em;
  color: var(--paper-45);
}

.page-home .match-score {
  display: flex;
  align-items: baseline;
  gap: .16rem;
  margin: .15rem 0 0;
  font-family: var(--font-mono);
  font-size: clamp(2rem, 5vw, 2.7rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -.03em;
  color: var(--paper);
}

.page-home .match-score em {
  font-style: normal;
  font-size: .6em;
  color: var(--gold);
}

.page-home .match-teams {
  margin: 0;
  font-size: .94rem;
  color: var(--paper-70);
}

.page-home .match-facts {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .5rem 1rem;
  margin: .4rem 0 0;
  padding: .55rem 0 0;
  border-top: 1px dashed rgba(244, 237, 226, .22);
  font-size: .82rem;
  color: var(--paper-45);
}

.page-home .match-facts b {
  color: var(--gold);
  font-family: var(--font-mono);
}

/* ---------- 字段说明 ---------- */

.page-home .read-section {
  background: var(--paper-2);
}

.page-home .read-grid {
  align-items: start;
}

.page-home .read-copy .section-title {
  max-width: 20ch;
}

.page-home .field-list {
  margin: 1.5rem 0 0;
  border-top: 3px solid var(--ink);
}

.page-home .field-row {
  display: grid;
  grid-template-columns: 5.2rem minmax(0, 1fr);
  gap: .5rem .9rem;
  padding: .95rem 0;
  border-bottom: 1px solid var(--line-strong);
}

.page-home .field-row dt {
  font-family: var(--font-sans);
  font-weight: 900;
  font-size: .98rem;
  letter-spacing: .02em;
  color: var(--red);
}

.page-home .field-row dd {
  margin: 0;
  font-size: .95rem;
  line-height: 1.75;
  color: var(--ink);
}

.page-home .read-figure {
  margin: 0;
  border: 3px solid var(--ink);
  box-shadow: 7px 7px 0 var(--emerald);
  background: var(--night);
  overflow: hidden;
}

.page-home .read-figure img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.page-home .media-cap {
  padding: .7rem .9rem;
  font-size: .8rem;
  line-height: 1.6;
  color: var(--paper-70);
  background: var(--night);
  border-top: 1px solid rgba(244, 237, 226, .18);
}

/* ---------- 两条入口对比 ---------- */

.page-home .entry-section {
  background: var(--paper);
}

.page-home .entry-compare {
  display: grid;
  gap: var(--home-gap);
  margin-top: 1.6rem;
}

.page-home .compare-col {
  display: flex;
  flex-direction: column;
  gap: .85rem;
  padding: clamp(1.2rem, 2.6vw, 2rem);
  background: var(--paper-2);
  border: 3px solid var(--ink);
  box-shadow: 6px 6px 0 var(--line-strong);
}

.page-home .compare-col--night {
  background: var(--night);
  color: var(--paper);
  border-color: var(--ink);
  box-shadow: 6px 6px 0 var(--emerald);
}

.page-home .compare-tag {
  margin: 0;
  font-family: var(--font-mono);
  font-size: .74rem;
  letter-spacing: .18em;
  color: var(--red);
}

.page-home .compare-tag--gold {
  color: var(--gold);
}

.page-home .compare-col .block-title {
  margin: 0;
  font-size: clamp(1.15rem, 2.4vw, 1.5rem);
}

.page-home .compare-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: .6rem;
  font-size: .94rem;
  line-height: 1.7;
}

.page-home .compare-list li {
  position: relative;
  padding-left: 1.2rem;
}

.page-home .compare-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .62em;
  width: .48rem;
  height: .48rem;
  background: var(--gold);
  transform: rotate(45deg);
}

.page-home .compare-col--night .compare-list li::before {
  background: var(--emerald-bright);
}

.page-home .compare-col .btn {
  align-self: flex-start;
  margin-top: auto;
}

/* ---------- 会员中心 ---------- */

.page-home .member-section {
  background: var(--paper-2);
}

.page-home .member-panel {
  display: grid;
  gap: 1.4rem;
  padding: clamp(1.4rem, 3.4vw, 3rem);
  background: var(--red);
  color: var(--paper);
  border: 3px solid var(--ink);
  box-shadow: 8px 8px 0 var(--ink);
}

.page-home .member-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: .9rem;
}

.page-home .eyebrow--onRed {
  color: var(--gold);
}

.page-home .member-title {
  margin: 0;
  color: var(--paper);
  max-width: 20ch;
}

.page-home .member-copy p {
  margin: 0;
  max-width: 54ch;
  line-height: 1.75;
  color: rgba(244, 237, 226, .86);
}

.page-home .member-facts {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: .9rem;
}

.page-home .member-facts li {
  display: flex;
  flex-direction: column;
  gap: .15rem;
  padding: .85rem 1rem;
  background: rgba(20, 22, 28, .26);
  border-left: 6px solid var(--gold);
}

.page-home .fact-num {
  font-family: var(--font-mono);
  font-size: clamp(1.9rem, 5vw, 2.6rem);
  font-weight: 700;
  line-height: 1;
  color: var(--paper);
}

.page-home .fact-lab {
  font-size: .84rem;
  letter-spacing: .04em;
  color: rgba(244, 237, 226, .78);
}

/* ---------- 入口速查 ---------- */

.page-home .quick-section {
  position: relative;
  overflow: hidden;
  background: var(--paper);
}

.page-home .quick-art {
  position: absolute;
  inset: 0;
}

.page-home .quick-art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .16;
}

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

.page-home .quick-list {
  list-style: none;
  margin: 1.5rem 0 0;
  padding: 0;
  border-top: 3px solid var(--ink);
}

.page-home .quick-list li {
  border-bottom: 1px solid var(--line-strong);
}

.page-home .quick-list a {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: .3rem 1rem;
  padding: .95rem .25rem;
  color: var(--ink);
  text-decoration: none;
  transition: background .2s var(--ease), padding-left .2s var(--ease);
}

.page-home .quick-list a:hover,
.page-home .quick-list a:focus-visible {
  background: rgba(217, 164, 25, .16);
  padding-left: .8rem;
}

.page-home .quick-k {
  font-family: var(--font-sans);
  font-weight: 900;
  font-size: 1.05rem;
}

.page-home .quick-v {
  font-family: var(--font-mono);
  font-size: .78rem;
  letter-spacing: .14em;
  color: var(--red);
}

.page-home .quick-contact {
  display: grid;
  gap: .55rem;
  margin-top: 1.8rem;
  padding: 1.1rem 1.25rem 1.2rem;
  background: var(--paper);
  border: 3px solid var(--ink);
  box-shadow: 6px 6px 0 var(--gold);
}

.page-home .quick-contact .contact-line {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: .4rem .8rem;
  padding-bottom: .45rem;
  border-bottom: 1px dashed var(--line);
}

.page-home .quick-contact .contact-label {
  min-width: 4.6rem;
  font-size: .82rem;
  letter-spacing: .08em;
  color: var(--slate);
}

.page-home .quick-contact .contact-value {
  font-family: var(--font-mono);
  font-size: .92rem;
  color: var(--ink);
  word-break: break-all;
}

.page-home .quick-contact .copy-btn {
  margin-left: auto;
}

.page-home .quick-note {
  margin: .3rem 0 0;
  font-size: .82rem;
  line-height: 1.7;
  color: var(--slate);
}

/* ---------- 进入动效 ---------- */

.js-reveal .page-home [data-reveal] {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity .32s var(--ease), transform .32s var(--ease);
}

.js-reveal .page-home [data-reveal].is-revealed {
  opacity: 1;
  transform: none;
}

/* ---------- 响应式 ---------- */

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

  .page-home .member-facts {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

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

@media (min-width: 780px) {
  .page-home .entry-compare {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 900px) {
  .page-home .hero-grid {
    grid-template-columns: minmax(0, 1.35fr) minmax(0, .65fr);
    grid-template-areas:
      "intro live"
      "focus live"
      "entry entry";
    column-gap: 1.5rem;
  }

  .page-home .hero-intro { grid-area: intro; }
  .page-home .hero-live { grid-area: live; }
  .page-home .hero-focus { grid-area: focus; }
  .page-home .hero-entries { grid-area: entry; }
}

@media (min-width: 1024px) {
  .page-home .member-panel {
    grid-template-columns: minmax(0, 1.25fr) minmax(0, 1fr);
    align-items: center;
  }
}

@media (max-width: 639px) {
  .page-home .field-row {
    grid-template-columns: minmax(0, 1fr);
    gap: .25rem;
  }

  .page-home .quick-contact .copy-btn {
    margin-left: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .page-home *,
  .page-home *::before,
  .page-home *::after {
    animation: none !important;
    transition: none !important;
  }

  .js-reveal .page-home [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
