@keyframes home-hero-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(226, 58, 46, 0.55);
  }
  70% {
    box-shadow: 0 0 0 9px rgba(226, 58, 46, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(226, 58, 46, 0);
  }
}

.page-home {
  --home-edge: 16px;
  --home-gap: 48px;
  --home-gap-lg: 88px;
  --home-ink-on-dark: #f6efe4;
  --home-muted-on-dark: rgba(246, 239, 228, 0.64);
  background: var(--bg-cream);
  color: var(--ink-dark);
  font-family: var(--font-body);
  line-height: 1.75;
  overflow-x: clip;
}

.page-home h1,
.page-home h2,
.page-home h3,
.page-home p,
.page-home dl,
.page-home dt,
.page-home dd,
.page-home ul,
.page-home ol {
  margin-top: 0;
}

.page-home section[id] {
  scroll-margin-top: 24px;
}

/* ===== 区块通用 ===== */
.page-home .home-directory,
.page-home .home-calendar,
.page-home .home-report,
.page-home .home-rank,
.page-home .home-team,
.page-home .home-news,
.page-home .home-faq,
.page-home .home-cta {
  padding-top: var(--home-gap);
  padding-bottom: var(--home-gap);
}

.page-home .home-section-head {
  display: block;
}

.page-home .home-section-eyebrow {
  margin: 0 0 10px;
  font-family: var(--font-data);
  font-size: 13px;
  letter-spacing: 0.18em;
  color: var(--fire-red);
  text-transform: uppercase;
}

.page-home .home-section-title {
  margin: 0;
  font-family: var(--font-head);
  font-size: 32px;
  line-height: 1.22;
  color: var(--ink-dark);
  letter-spacing: 0.01em;
}

.page-home .home-section-desc {
  margin: 12px 0 0;
  color: var(--muted-gray);
  max-width: 36em;
}

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

.page-home .home-section-head--dark .home-section-title {
  color: var(--home-ink-on-dark);
}

.page-home .home-section-head--dark .home-section-desc {
  color: var(--home-muted-on-dark);
}

.page-home .home-section-head--row {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
}

/* ===== 进场直连 ===== */
.page-home .home-hero {
  position: relative;
  overflow: hidden;
  background: var(--deep-black);
  color: var(--home-ink-on-dark);
  display: flex;
  min-height: 620px;
}

.page-home .home-hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(135deg, var(--fire-red) 0%, var(--warm-orange) 54%, var(--gold) 130%);
  clip-path: polygon(0 0, 100% 0, 100% 74%, 0 100%);
}

.page-home .home-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 70% 38%;
  opacity: 0.38;
}

.page-home .home-hero__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(22, 22, 22, 0.2) 0%, rgba(22, 22, 22, 0.34) 45%, rgba(22, 22, 22, 0.92) 100%);
}

.page-home .home-hero__speedline {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background-image: repeating-linear-gradient(115deg, rgba(240, 184, 76, 0.14) 0 1px, transparent 1px 12px);
}

.page-home .home-hero__inner {
  position: relative;
  z-index: 2;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-top: 56px;
  padding-bottom: 52px;
}

.page-home .home-hero__crumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
  font-size: 13px;
  color: rgba(246, 239, 228, 0.62);
}

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

.page-home .home-hero__crumb a:hover {
  text-decoration: underline;
}

.page-home .home-hero__crumb-sep {
  color: rgba(246, 239, 228, 0.38);
}

.page-home .home-hero__kicker {
  margin: 0 0 10px;
  font-family: var(--font-data);
  font-size: 13px;
  letter-spacing: 0.22em;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 10px;
}

.page-home .home-hero__kicker::before {
  content: "";
  width: 26px;
  height: 2px;
  background: var(--fire-red);
}

.page-home .home-hero__title {
  margin: 0;
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 44px;
  line-height: 1.14;
  letter-spacing: 0.02em;
  color: #ffffff;
  max-width: 10em;
}

.page-home .home-hero__lead {
  margin: 16px 0 0;
  max-width: 720px;
  font-size: 16px;
  line-height: 1.85;
  color: rgba(246, 239, 228, 0.82);
}

.page-home .home-hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
  align-items: center;
}

.page-home .home-hero__more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 2px;
  color: var(--gold);
  font-weight: 700;
  text-decoration: none;
  border-bottom: 2px solid rgba(240, 184, 76, 0.6);
  transition: border-color 0.2s ease, color 0.2s ease;
}

.page-home .home-hero__more:hover {
  color: #ffffff;
  border-bottom-color: var(--fire-red);
}

.page-home .home-hero__stats {
  margin: 22px 0 0;
  padding: 18px 16px 0;
  border-top: 1px solid rgba(246, 239, 228, 0.16);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px 12px;
  max-width: 520px;
}

.page-home .home-hero__stat {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.page-home .home-hero__stat-num {
  font-family: var(--font-data);
  font-size: 26px;
  color: var(--gold);
  line-height: 1.1;
}

.page-home .home-hero__stat-unit {
  font-size: 16px;
}

.page-home .home-hero__stat-label {
  margin: 0;
  font-size: 13px;
  color: rgba(246, 239, 228, 0.64);
}

.page-home .home-hero__badge {
  position: absolute;
  top: 22px;
  right: 18px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px;
  border: 1px solid rgba(240, 184, 76, 0.6);
  border-radius: 999px;
  font-size: 13px;
  letter-spacing: 0.08em;
  color: var(--gold);
  background: rgba(22, 22, 22, 0.55);
  backdrop-filter: blur(6px);
}

.page-home .home-hero__badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--fire-red);
  animation: home-hero-pulse 1.8s ease-out infinite;
}

/* ===== 问题速览 ===== */
.page-home .home-directory {
  background: var(--bg-cream);
  border-bottom: 1px solid rgba(46, 38, 32, 0.08);
}

.page-home .home-directory__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 32px;
}

.page-home .home-directory-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 20px 18px 18px;
  background: var(--glass-white);
  border: 1px solid rgba(46, 38, 32, 0.1);
  border-radius: 2px;
  backdrop-filter: blur(8px);
  box-shadow: 0 10px 24px rgba(22, 22, 22, 0.06);
  overflow: hidden;
}

.page-home .home-directory-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--fire-red);
}

.page-home .home-directory-card--orange::before {
  background: var(--warm-orange);
}

.page-home .home-directory-card--black::before {
  background: var(--deep-black);
}

.page-home .home-directory-card--gold::before {
  background: var(--gold);
}

.page-home .home-directory-card__num {
  display: block;
  font-family: var(--font-data);
  font-size: 15px;
  color: var(--muted-gray);
  letter-spacing: 0.08em;
  margin-bottom: 12px;
}

.page-home .home-directory-card__name {
  margin: 0 0 6px;
  font-family: var(--font-head);
  font-size: 18px;
  line-height: 1.3;
}

.page-home .home-directory-card__problem {
  margin: 0 0 10px;
  padding: 8px 10px;
  background: rgba(226, 58, 46, 0.07);
  border-left: 2px solid var(--fire-red);
  font-weight: 700;
  font-size: 14px;
  color: var(--ink-dark);
}

.page-home .home-directory-card--orange .home-directory-card__problem {
  background: rgba(240, 126, 51, 0.08);
  border-left-color: var(--warm-orange);
}

.page-home .home-directory-card--black .home-directory-card__problem {
  background: rgba(22, 22, 22, 0.06);
  border-left-color: var(--deep-black);
}

.page-home .home-directory-card--gold .home-directory-card__problem {
  background: rgba(240, 184, 76, 0.12);
  border-left-color: var(--gold);
}

.page-home .home-directory-card__text {
  margin: 0 0 16px;
  font-size: 14px;
  line-height: 1.7;
  color: var(--muted-gray);
  flex: 1;
}

.page-home .home-directory-card__link {
  font-weight: 700;
  font-size: 14px;
  color: var(--fire-red);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  width: fit-content;
}

.page-home .home-directory-card__link:hover {
  color: var(--deep-black);
}

.page-home .home-directory-card__link::after {
  content: "→";
  font-family: var(--font-data);
}

/* ===== 赛事日历 ===== */
.page-home .home-calendar {
  background: var(--bg-cream);
}

.page-home .home-calendar__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: center;
}

.page-home .home-calendar__media {
  position: relative;
  aspect-ratio: 4 / 3;
  max-width: 520px;
  margin-inline: auto;
  width: 100%;
  overflow: hidden;
  background: var(--deep-black);
  clip-path: polygon(0 0, calc(100% - 18px) 0, 100% 18px, 100% 100%, 18px 100%, 0 calc(100% - 18px));
}

.page-home .home-calendar__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
}

.page-home .home-calendar__media::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 34px;
  height: 34px;
  background: linear-gradient(135deg, var(--fire-red), var(--gold));
  opacity: 0.9;
  border-top-left-radius: 6px;
}

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

.page-home .home-calendar__lead {
  margin: 18px 0 0;
  color: var(--muted-gray);
  font-size: 16px;
  line-height: 1.8;
}

.page-home .home-calendar__hint {
  margin-top: 20px;
  padding: 16px 18px;
  border: 1px solid rgba(226, 58, 46, 0.28);
  border-left: 4px solid var(--fire-red);
  background: rgba(226, 58, 46, 0.05);
  font-size: 14px;
  line-height: 1.7;
}

.page-home .home-calendar__hint strong {
  color: var(--fire-red);
}

.page-home .home-calendar__actions {
  margin-top: 22px;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 14px;
}

.page-home .home-calendar__collect-group {
  max-width: 360px;
}

.page-home .home-calendar__collect {
  list-style: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 18px;
  border: 0;
  background: var(--fire-red);
  color: #ffffff;
  font-weight: 700;
  font-size: 15px;
  clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 0 100%);
  transition: background 0.2s ease;
}

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

.page-home .home-calendar__collect:hover {
  background: var(--deep-black);
}

.page-home .home-calendar__cache-alert {
  margin-top: 10px;
  padding: 14px 16px;
  border: 1px solid rgba(240, 184, 76, 0.6);
  background: rgba(240, 184, 76, 0.1);
  font-size: 14px;
  line-height: 1.7;
}

.page-home .home-calendar__cache-alert p {
  margin: 0 0 6px;
}

.page-home .home-calendar__cache-alert p:last-child {
  margin-bottom: 0;
}

.page-home .home-calendar__more {
  display: inline-flex;
  align-items: center;
  color: var(--deep-black);
  font-weight: 700;
  text-decoration: none;
  padding: 12px 2px;
  border-bottom: 2px solid var(--gold);
}

.page-home .home-calendar__more:hover {
  color: var(--fire-red);
}

/* ===== 战报速递 ===== */
.page-home .home-report {
  position: relative;
  background: linear-gradient(140deg, var(--deep-black) 0%, #2b1d18 72%, #371f15 100%);
  color: var(--home-ink-on-dark);
  overflow: hidden;
}

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

.page-home .home-report .home-section-title {
  color: var(--home-ink-on-dark);
}

.page-home .home-report .home-section-desc {
  color: var(--home-muted-on-dark);
}

.page-home .home-report__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  margin-top: 36px;
}

.page-home .home-report__panel {
  padding: 22px 18px;
  background: rgba(22, 22, 22, 0.34);
  border: 1px solid rgba(246, 239, 228, 0.12);
  backdrop-filter: blur(8px);
  position: relative;
}

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

.page-home .home-report__item {
  display: grid;
  grid-template-columns: 56px 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 14px 12px;
  background: rgba(255, 255, 255, 0.04);
  border-left: 3px solid var(--fire-red);
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.page-home .home-report__item:hover {
  background: rgba(255, 255, 255, 0.09);
  border-left-color: var(--gold);
  transform: translateX(4px);
}

.page-home .home-report__sport {
  font-family: var(--font-data);
  font-size: 12px;
  letter-spacing: 0.1em;
  color: var(--warm-orange);
  background: rgba(240, 126, 51, 0.12);
  padding: 4px 8px;
  width: fit-content;
}

.page-home .home-report__match {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.page-home .home-report__league {
  font-size: 14px;
  color: rgba(246, 239, 228, 0.72);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.page-home .home-report__score {
  font-family: var(--font-data);
  font-size: 18px;
  color: #ffffff;
  letter-spacing: 0.02em;
}

.page-home .home-report__meta {
  font-family: var(--font-data);
  font-size: 12px;
  color: var(--gold);
  border: 1px solid rgba(240, 184, 76, 0.4);
  padding: 4px 8px;
  white-space: nowrap;
  transition: background 0.2s ease, color 0.2s ease;
}

.page-home .home-report__meta-label {
  font-size: 11px;
  opacity: 0.82;
}

.page-home .home-report__item:hover .home-report__meta {
  background: var(--gold);
  color: var(--deep-black);
}

.page-home .home-report__footnote {
  margin: 18px 0 0;
  font-size: 13px;
  color: rgba(246, 239, 228, 0.55);
}

.page-home .home-report__aside {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.page-home .home-report__media {
  aspect-ratio: 3 / 2;
  position: relative;
  overflow: hidden;
  background: var(--warm-orange);
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 14px), calc(100% - 14px) 100%, 0 100%);
}

.page-home .home-report__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-home .home-report__mode {
  background: rgba(246, 239, 228, 0.05);
  border-left: 4px solid var(--gold);
  padding: 16px 18px;
}

.page-home .home-report__mode-title {
  margin: 0 0 8px;
  font-size: 18px;
  color: var(--gold);
}

.page-home .home-report__mode p {
  margin: 0;
  font-size: 14px;
  line-height: 1.75;
  color: rgba(246, 239, 228, 0.8);
}

.page-home .home-report__cta {
  color: var(--gold);
  font-weight: 700;
  text-decoration: none;
  padding-bottom: 4px;
  border-bottom: 2px solid var(--fire-red);
  width: fit-content;
}

.page-home .home-report__cta:hover {
  color: #ffffff;
}

/* ===== 积分榜快速通道 ===== */
.page-home .home-rank {
  position: relative;
  background: linear-gradient(118deg, #1a1512 0%, #2b0f0c 54%, #46150f 100%);
  color: var(--home-ink-on-dark);
  overflow: hidden;
}

.page-home .home-rank__speedline {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: repeating-linear-gradient(118deg, rgba(240, 184, 76, 0.08) 0 1px, transparent 1px 14px);
}

.page-home .home-rank__grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: center;
}

.page-home .home-rank__desc {
  margin: 16px 0 0;
  color: rgba(246, 239, 228, 0.8);
}

.page-home .home-rank__alert {
  margin-top: 20px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 16px;
  background: rgba(226, 58, 46, 0.18);
  border: 1px solid rgba(240, 184, 76, 0.45);
  transition: background 0.2s ease;
}

.page-home .home-rank__alert:hover {
  background: rgba(240, 184, 76, 0.24);
}

.page-home .home-rank__alert-dot {
  flex: 0 0 auto;
  width: 8px;
  height: 8px;
  margin-top: 6px;
  border-radius: 50%;
  background: var(--gold);
}

.page-home .home-rank__alert p {
  margin: 0;
  font-size: 14px;
}

.page-home .home-rank__tags {
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.page-home .home-rank__tag {
  padding: 6px 12px;
  border: 1px solid rgba(240, 184, 76, 0.4);
  color: var(--gold);
  font-size: 13px;
  background: rgba(22, 22, 22, 0.22);
}

.page-home .home-rank__links {
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.page-home .home-rank__links a {
  color: var(--gold);
  font-weight: 700;
  text-decoration: none;
  border-bottom: 2px solid transparent;
  transition: border-color 0.2s ease;
}

.page-home .home-rank__links a:hover {
  border-bottom-color: var(--warm-orange);
}

.page-home .home-rank__media {
  position: relative;
  aspect-ratio: 4 / 3;
  max-width: 520px;
  margin-inline: auto;
  width: 100%;
  overflow: hidden;
  border-radius: 2px;
  clip-path: polygon(0 0, calc(100% - 16px) 0, 100% 16px, 100% 100%, 16px 100%, 0 calc(100% - 16px));
}

.page-home .home-rank__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ===== 球队资料新适配 ===== */
.page-home .home-team {
  background: linear-gradient(180deg, var(--bg-cream) 0%, rgba(240, 184, 76, 0.1) 100%);
}

.page-home .home-team__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: center;
}

.page-home .home-team__desc {
  margin: 16px 0 0;
  color: var(--muted-gray);
}

.page-home .home-team__points {
  list-style: none;
  margin: 20px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px 20px;
}

.page-home .home-team__points li {
  position: relative;
  padding-left: 20px;
  font-size: 15px;
  color: var(--ink-dark);
}

.page-home .home-team__points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 9px;
  height: 9px;
  background: var(--fire-red);
  transform: rotate(45deg);
}

.page-home .home-team__more {
  margin-top: 24px;
  display: inline-flex;
  width: fit-content;
  color: var(--fire-red);
  font-weight: 700;
  text-decoration: none;
  border-bottom: 2px solid var(--gold);
  padding-bottom: 2px;
}

.page-home .home-team__more:hover {
  color: var(--deep-black);
}

.page-home .home-team__mock {
  max-width: 520px;
  margin-inline: auto;
  width: 100%;
  border: 1px solid rgba(46, 38, 32, 0.14);
  box-shadow: 0 18px 32px rgba(22, 22, 22, 0.08);
  background: #fffaf1;
}

.page-home .home-team__mock-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 16px;
  background: var(--deep-black);
  color: var(--bg-cream);
  font-weight: 700;
  font-size: 14px;
}

.page-home .home-team__mock-ver {
  font-family: var(--font-data);
  color: var(--gold);
  font-size: 12px;
}

.page-home .home-team__mock-body {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 16px;
}

.page-home .home-team__mock-row {
  padding: 10px 12px;
  border-left: 3px solid var(--fire-red);
  background: rgba(246, 239, 228, 0.4);
  font-size: 14px;
}

.page-home .home-team__mock-foot {
  padding: 10px 16px;
  font-family: var(--font-data);
  font-size: 12px;
  color: var(--fire-red);
  border-top: 1px dashed rgba(46, 38, 32, 0.16);
}

/* ===== 平台动态 ===== */
.page-home .home-news {
  background: var(--bg-cream);
  border-top: 1px solid rgba(46, 38, 32, 0.08);
}

.page-home .home-news__all {
  color: var(--fire-red);
  font-weight: 700;
  text-decoration: none;
  padding-bottom: 4px;
  border-bottom: 2px solid var(--gold);
  white-space: nowrap;
}

.page-home .home-news__all:hover {
  color: var(--deep-black);
}

.page-home .home-news__list {
  list-style: none;
  margin: 32px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.page-home .home-news__item {
  padding: 16px 18px;
  background: var(--glass-white);
  border: 1px solid rgba(46, 38, 32, 0.1);
  backdrop-filter: blur(6px);
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.page-home .home-news__item:hover {
  border-color: var(--fire-red);
  transform: translateY(-2px);
}

.page-home .home-news__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 8px;
}

.page-home .home-news__tag {
  padding: 3px 8px;
  font-size: 12px;
  font-weight: 700;
  color: var(--fire-red);
  border: 1px solid rgba(226, 58, 46, 0.3);
  background: rgba(226, 58, 46, 0.05);
}

.page-home .home-news__time {
  font-family: var(--font-data);
  font-size: 12px;
  color: var(--muted-gray);
}

.page-home .home-news__title {
  margin: 0;
  font-size: 17px;
  font-family: var(--font-head);
}

.page-home .home-news__summary {
  margin: 6px 0 0;
  font-size: 14px;
  color: var(--muted-gray);
}

/* ===== FAQ 速览 ===== */
.page-home .home-faq {
  background: rgba(240, 184, 76, 0.08);
}

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

.page-home .home-faq__desc {
  margin: 16px 0 0;
  color: var(--muted-gray);
}

.page-home .home-faq__link {
  display: inline-flex;
  margin-top: 22px;
  color: var(--fire-red);
  font-weight: 700;
  text-decoration: none;
  border-bottom: 2px solid var(--gold);
  padding-bottom: 4px;
  width: fit-content;
}

.page-home .home-faq__link:hover {
  color: var(--deep-black);
}

.page-home .home-faq__list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.page-home .home-faq__item {
  background: var(--glass-white);
  border: 1px solid rgba(46, 38, 32, 0.12);
  backdrop-filter: blur(8px);
  transition: border-color 0.2s ease;
}

.page-home .home-faq__item:focus-within {
  border-color: var(--fire-red);
}

.page-home .home-faq__question {
  cursor: pointer;
  list-style: none;
  padding: 16px 18px;
  font-weight: 700;
  font-size: 15px;
  color: var(--ink-dark);
  position: relative;
  padding-right: 46px;
  transition: color 0.2s ease;
}

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

.page-home .home-faq__question::after {
  content: "+";
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-data);
  font-size: 20px;
  color: var(--fire-red);
  transition: transform 0.2s ease;
}

.page-home .home-faq__item[open] .home-faq__question::after {
  transform: translateY(-50%) rotate(45deg);
}

.page-home .home-faq__answer {
  padding: 0 18px 16px;
  border-top: 1px solid rgba(46, 38, 32, 0.08);
  color: var(--muted-gray);
  font-size: 14px;
  line-height: 1.8;
}

.page-home .home-faq__answer p {
  margin: 12px 0 0;
}

/* ===== 页底 CTA ===== */
.page-home .home-cta {
  position: relative;
  background: var(--deep-black);
  color: var(--home-ink-on-dark);
  overflow: hidden;
}

.page-home .home-cta::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--fire-red), var(--gold), var(--warm-orange));
}

.page-home .home-cta__inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
}

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

.page-home .home-cta .home-section-title {
  color: var(--bg-cream);
}

.page-home .home-cta__copy p:last-child {
  margin: 14px 0 0;
  color: rgba(246, 239, 228, 0.7);
}

.page-home .home-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.page-home .home-cta__link {
  color: var(--gold);
  font-weight: 700;
  text-decoration: none;
  border-bottom: 2px solid var(--fire-red);
  padding-bottom: 2px;
  transition: color 0.2s ease;
}

.page-home .home-cta__link:hover {
  color: #ffffff;
}

/* ===== 响应式增强 ===== */
@media (min-width: 640px) {
  .page-home .home-section-head--row {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
  }

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

  .page-home .home-news__list {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }

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

@media (min-width: 700px) {
  .page-home .home-directory__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (min-width: 900px) {
  .page-home .home-directory,
  .page-home .home-calendar,
  .page-home .home-report,
  .page-home .home-rank,
  .page-home .home-team,
  .page-home .home-news,
  .page-home .home-faq,
  .page-home .home-cta {
    padding-top: var(--home-gap-lg);
    padding-bottom: var(--home-gap-lg);
  }

  .page-home .home-section-title {
    font-size: 40px;
  }

  .page-home .home-hero {
    min-height: 660px;
  }

  .page-home .home-hero__media {
    clip-path: polygon(26% 0, 100% 0, 100% 100%, 3% 100%);
  }

  .page-home .home-hero__media img {
    opacity: 0.72;
    object-position: 48% 42%;
  }

  .page-home .home-hero__media::after {
    background: linear-gradient(90deg, rgba(22, 22, 22, 0.62) 0%, rgba(22, 22, 22, 0.1) 60%, rgba(22, 22, 22, 0.18) 100%);
  }

  .page-home .home-hero__inner {
    padding-top: 84px;
    padding-bottom: 64px;
  }

  .page-home .home-hero__title {
    font-size: 64px;
  }

  .page-home .home-hero__lead {
    max-width: 42em;
  }

  .page-home .home-directory__grid {
    grid-template-columns: repeat(4, 1fr);
    margin-top: 44px;
  }

  .page-home .home-directory__grid .home-directory-card:nth-child(even) {
    margin-top: 18px;
  }

  .page-home .home-calendar__grid,
  .page-home .home-rank__grid,
  .page-home .home-team__grid {
    grid-template-columns: 1fr 1fr;
    gap: 48px;
  }

  .page-home .home-calendar__media,
  .page-home .home-rank__media {
    max-width: none;
    margin-inline: 0;
  }

  .page-home .home-report__grid {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 48px;
  }

  .page-home .home-faq__grid {
    grid-template-columns: 0.8fr 1.2fr;
    gap: 48px;
  }
}
