.page-home {
  --home-border: 4px;
  --home-gap: 1.5rem;
  background: var(--color-bg);
  scroll-behavior: smooth;
}

/* ========== 首屏：品牌刊头与赛季焦点 ========== */
.page-home .home-hero {
  background: var(--color-blue);
  color: #fff;
  padding: 1.5rem 1.25rem 3rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  position: relative;
  overflow: hidden;
}

.page-home .home-hero::before {
  content: "";
  position: absolute;
  right: -60px;
  top: -60px;
  width: 180px;
  height: 180px;
  border: 4px solid var(--color-gold);
  opacity: 0.35;
  pointer-events: none;
}

.page-home .home-hero__context {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.65);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.page-home .home-hero__context a {
  color: var(--color-gold);
  text-decoration: none;
}

.page-home .home-hero__context a:hover {
  color: var(--color-orange);
}

.page-home .home-hero__main {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
}

.page-home .home-hero__title {
  margin: 0;
  line-height: 1.1;
}

.page-home .home-hero__title-focus {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(3rem, 11vw, 6.5rem);
  line-height: 0.92;
  color: #fff;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.page-home .home-hero__title-meta {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  margin-top: 0.6rem;
}

.page-home .home-hero__title-brand {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 4vw, 2rem);
  color: var(--color-gold);
  letter-spacing: 0.04em;
}

.page-home .home-hero__title-cert {
  font-size: 0.9rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
  letter-spacing: 0.08em;
}

.page-home .home-hero__desc {
  max-width: 34em;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1rem;
  line-height: 1.7;
  margin: 0;
}

.page-home .home-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 0.5rem;
}

.page-home .home-hero__poster {
  margin: 0;
  position: relative;
}

.page-home .home-hero__poster-img {
  width: 100%;
  height: auto;
  display: block;
  border: var(--home-border) solid rgba(255, 255, 255, 0.9);
  box-shadow: 10px 10px 0 rgba(0, 0, 0, 0.35);
}

.page-home .home-hero__poster-tag {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  background: var(--color-orange);
  color: #fff;
  font-family: var(--font-mono);
  padding: 0.5rem 0.75rem;
  border: 3px solid #fff;
  text-align: center;
  line-height: 1.2;
}

.page-home .home-hero__poster-tag span {
  display: block;
  font-size: 0.68rem;
  letter-spacing: 0.1em;
}

.page-home .home-hero__poster-tag strong {
  display: block;
  font-size: 1.8rem;
  font-weight: 700;
}

.page-home .home-hero__data {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  border-top: 2px solid rgba(255, 255, 255, 0.25);
  padding-top: 1.5rem;
}

.page-home .home-hero__data-item {
  padding-right: 0.5rem;
}

.page-home .home-hero__data-num {
  display: block;
  font-family: var(--font-mono);
  font-size: clamp(1.6rem, 5vw, 2.4rem);
  font-weight: 700;
  color: var(--color-orange);
  line-height: 1;
}

.page-home .home-hero__data-label {
  display: block;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.68);
  margin-top: 0.35rem;
}

.page-home .home-hero__index {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.25rem;
  border-top: 2px solid rgba(255, 255, 255, 0.25);
  padding-top: 1rem;
}

.page-home .home-hero__index a {
  color: #fff;
  text-decoration: none;
  font-family: var(--font-mono);
  font-size: 0.82rem;
  padding: 0.25rem 0;
  border-bottom: 2px solid transparent;
  transition: color 0.2s, border-color 0.2s, transform 0.2s;
}

.page-home .home-hero__index a:hover {
  color: var(--color-gold);
  border-bottom-color: var(--color-orange);
  transform: translateY(-2px);
}

/* ========== 赛事战报卡片流 ========== */
.page-home .home-reports {
  padding: 3rem 0;
}

.page-home .home-reports__head {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.page-home .home-reports__head h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  margin: 0;
  color: var(--color-text);
}

.page-home .home-reports__more {
  margin-left: auto;
  color: var(--color-blue);
  font-family: var(--font-mono);
  font-size: 0.85rem;
  text-decoration: none;
  border-bottom: 2px solid var(--color-orange);
  padding-bottom: 0.2rem;
  transition: color 0.2s, border-color 0.2s;
}

.page-home .home-reports__more:hover {
  color: var(--color-orange-dark);
  border-bottom-color: var(--color-blue);
}

.page-home .home-reports__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.page-home .home-reports__card {
  background: #fff;
  border: var(--home-border) solid var(--color-blue);
  box-shadow: 7px 7px 0 var(--color-line);
  padding: 1.25rem 1.5rem;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}

.page-home .home-reports__card:hover,
.page-home .home-reports__card:focus-within {
  transform: translate(-2px, -4px);
  box-shadow: 10px 10px 0 var(--color-blue);
  border-color: var(--color-orange);
}

.page-home .home-reports__card-meta {
  display: flex;
  justify-content: space-between;
  gap: 0.5rem;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--color-muted);
  border-bottom: 1px solid var(--color-line);
  padding-bottom: 0.6rem;
  margin-bottom: 0.8rem;
}

.page-home .home-reports__scoreline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin: 1rem 0 0.8rem;
}

.page-home .home-reports__team {
  font-weight: 700;
  font-size: 1rem;
  flex: 1;
}

.page-home .home-reports__team:last-of-type {
  text-align: right;
}

.page-home .home-reports__score {
  font-family: var(--font-mono);
  font-size: clamp(1.4rem, 4vw, 2rem);
  font-weight: 700;
  color: #fff;
  background: var(--color-blue);
  padding: 0.25rem 0.6rem;
  border: 2px solid var(--color-blue);
  line-height: 1;
  white-space: nowrap;
}

.page-home .home-reports__summary {
  font-size: 0.9rem;
  color: var(--color-muted);
  margin: 0 0 1.25rem;
  line-height: 1.6;
}

.page-home .home-reports__readmore {
  align-self: flex-start;
  margin-top: auto;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--color-blue);
  text-decoration: none;
  border: 2px solid var(--color-blue);
  padding: 0.35rem 0.7rem;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.page-home .home-reports__readmore:hover {
  background: var(--color-orange);
  border-color: var(--color-orange);
  color: #fff;
}

/* ========== 积分查询面板 ========== */
.page-home .home-standings {
  background: var(--color-blue-soft);
  color: #fff;
  padding: 3rem 0;
}

.page-home .home-standings__head {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.page-home .home-standings__head h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  margin: 0;
}

.page-home .home-standings__layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.page-home .home-standings__visual {
  margin: 0;
}

.page-home .home-standings__visual img {
  width: 100%;
  height: auto;
  display: block;
  border: var(--home-border) solid var(--color-orange);
  box-shadow: 8px 8px 0 rgba(0, 0, 0, 0.3);
}

.page-home .home-standings__desc {
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.7;
  font-size: 0.95rem;
  margin: 0 0 1.25rem;
}

.page-home .home-standings__list {
  border-top: 2px solid rgba(255, 255, 255, 0.3);
  margin-bottom: 1.5rem;
}

.page-home .home-standings__row {
  display: grid;
  grid-template-columns: 3ch 1fr 4.5ch 4ch 3.5ch;
  gap: 0.5rem;
  align-items: center;
  padding: 0.8rem 0.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  position: relative;
  transition: background 0.2s;
  cursor: default;
}

.page-home .home-standings__row:hover,
.page-home .home-standings__row:focus-within {
  background: rgba(255, 215, 0, 0.08);
}

.page-home .home-standings__rank {
  font-family: var(--font-mono);
  color: var(--color-gold);
  font-weight: 700;
}

.page-home .home-standings__club {
  font-weight: 700;
  font-size: 0.95rem;
}

.page-home .home-standings__played,
.page-home .home-standings__gd {
  font-family: var(--font-mono);
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.7);
  text-align: right;
}

.page-home .home-standings__pts {
  font-family: var(--font-mono);
  font-weight: 700;
  color: var(--color-orange);
  font-size: 1.2rem;
  background: rgba(255, 107, 53, 0.15);
  padding: 0.1rem 0.3rem;
  text-align: center;
}

.page-home .home-standings__extra {
  display: none;
  position: absolute;
  top: calc(100% - 1px);
  left: 0;
  right: 0;
  background: var(--color-orange);
  color: #fff;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  padding: 0.3rem 0.5rem;
  z-index: 3;
}

.page-home .home-standings__row:hover .home-standings__extra,
.page-home .home-standings__row:focus-within .home-standings__extra {
  display: block;
}

/* ========== 费用明细专区 ========== */
.page-home .home-fees {
  padding: 3rem 0;
  border-top: 4px solid var(--color-gold);
  background: var(--color-bg);
}

.page-home .home-fees__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: start;
}

.page-home .home-fees__text h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  margin: 0;
  color: var(--color-text);
}

.page-home .home-fees__lead {
  color: var(--color-muted);
  line-height: 1.7;
  margin: 1rem 0 1.5rem;
}

.page-home .home-fees__detail {
  border: var(--home-border) solid var(--color-blue);
  margin-bottom: 1rem;
  background: #fff;
}

.page-home .home-fees__detail summary {
  padding: 1rem;
  font-weight: 700;
  cursor: pointer;
  font-size: 1rem;
  background: var(--color-blue);
  color: #fff;
  list-style: none;
  transition: background 0.2s;
}

.page-home .home-fees__detail summary::-webkit-details-marker {
  display: none;
}

.page-home .home-fees__detail summary::after {
  content: "+";
  float: right;
  font-family: var(--font-mono);
  font-size: 1.2rem;
  transition: transform 0.2s;
}

.page-home .home-fees__detail[open] summary::after {
  content: "–";
}

.page-home .home-fees__detail summary:hover {
  background: var(--color-blue-soft);
}

.page-home .home-fees__detail-body {
  padding: 1rem;
  border-top: 2px solid var(--color-line);
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--color-text);
}

.page-home .home-fees__detail strong {
  color: var(--color-orange-dark);
  font-family: var(--font-mono);
  font-size: 1.1rem;
  background: rgba(255, 107, 53, 0.1);
  padding: 0.1rem 0.3rem;
}

.page-home .home-fees__more {
  display: inline-block;
  margin-top: 0.5rem;
  color: var(--color-blue);
  font-family: var(--font-mono);
  font-size: 0.85rem;
  text-decoration: none;
  border-bottom: 2px solid var(--color-orange);
  padding-bottom: 0.2rem;
  transition: color 0.2s, border-color 0.2s;
}

.page-home .home-fees__more:hover {
  color: var(--color-orange-dark);
  border-bottom-color: var(--color-blue);
}

.page-home .home-fees__image {
  margin: 0;
}

.page-home .home-fees__image img {
  width: 100%;
  height: auto;
  display: block;
  border: var(--home-border) solid var(--color-orange);
  box-shadow: 9px 9px 0 var(--color-line);
}

/* ========== 品牌认证尾屏 ========== */
.page-home .home-certified {
  background: var(--color-blue);
  color: #fff;
  text-align: center;
  padding: 3rem 0;
}

.page-home .home-certified img {
  width: 100%;
  height: auto;
  display: block;
  border: 3px solid var(--color-gold);
  opacity: 0.85;
}

.page-home .home-certified__title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 4vw, 2.2rem);
  margin: 1.5rem 0 0.5rem;
  color: var(--color-gold);
  letter-spacing: 0.04em;
}

.page-home .home-certified__desc {
  color: rgba(255, 255, 255, 0.8);
  max-width: 44em;
  margin: 0 auto 1.5rem;
  line-height: 1.7;
  font-size: 0.95rem;
}

.page-home .home-certified .ticket-btn--ghost {
  border-color: var(--color-gold);
  color: var(--color-gold);
}

.page-home .home-certified__links {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

/* ========== 响应式增强 ========== */
@media (min-width: 768px) {
  .page-home .home-hero {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    padding: 2rem var(--content-pad) 3.5rem;
  }

  .page-home .home-hero__context {
    grid-column: 1 / -1;
  }

  .page-home .home-hero__main {
    grid-column: 1;
  }

  .page-home .home-hero__poster {
    grid-column: 2;
    align-self: start;
  }

  .page-home .home-hero__data {
    grid-column: 1 / -1;
  }

  .page-home .home-hero__index {
    grid-column: 1 / -1;
    border-top: 2px solid rgba(255, 255, 255, 0.25);
  }

  .page-home .home-reports__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .page-home .home-standings__layout {
    grid-template-columns: 1fr 1.2fr;
    align-items: center;
  }

  .page-home .home-fees__inner {
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }
}

@media (min-width: 1024px) {
  .page-home .home-hero {
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: auto auto auto;
  }

  .page-home .home-hero__context {
    grid-column: 1 / 5;
    grid-row: 1;
  }

  .page-home .home-hero__main {
    grid-column: 1 / 3;
    grid-row: 2;
  }

  .page-home .home-hero__poster {
    grid-column: 3 / 5;
    grid-row: 2;
  }

  .page-home .home-hero__data {
    grid-column: 1 / 4;
    grid-row: 3;
    align-self: end;
  }

  .page-home .home-hero__index {
    grid-column: 4;
    grid-row: 3;
    flex-direction: column;
    justify-content: flex-end;
    gap: 0.75rem;
    border-top: none;
    border-left: 3px solid var(--color-orange);
    padding-top: 0;
    padding-left: 1rem;
    margin-left: 0.75rem;
  }

  .page-home .home-reports__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
