.page-home {
  background: var(--white);
  color: var(--green-deep);
  overflow-x: hidden;
  font-family: var(--font-body);
}

/* ===== Hero 海报式首屏 ===== */
.page-home .home-hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  padding: calc(var(--gutter) * 1.4) var(--gutter);
  background: var(--black-night);
  overflow: hidden;
  isolation: isolate;
}

.page-home .home-hero__bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  margin: 0;
}

.page-home .home-hero__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg,
      rgba(11, 61, 46, 0.96) 0%,
      rgba(13, 31, 25, 0.86) 52%,
      rgba(11, 61, 46, 0.72) 100%);
}

.page-home .home-hero__bg img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}

.page-home .home-hero__inner {
  width: 100%;
  max-width: var(--container-wide);
  margin: 0 auto;
}

.page-home .home-hero__title {
  margin: 0 0 1.5rem;
  color: var(--white);
  font-family: var(--font-heading);
  line-height: 0.95;
  text-transform: uppercase;
}

.page-home .home-hero__kicker {
  display: block;
  margin-bottom: 0.85rem;
  color: var(--gold);
  font-family: var(--font-body);
  font-size: clamp(0.875rem, 1.6vw, 1.125rem);
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.page-home .home-hero__main {
  display: block;
  font-size: clamp(3.4rem, 8.5vw, 7.5rem);
}

.page-home .home-hero__line {
  display: block;
}

.page-home .home-hero__line--em {
  margin-left: 0.3em;
  color: var(--gold-sand);
}

.page-home .home-hero__lead {
  max-width: 36em;
  margin: 0 0 2.2rem;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.0625rem;
  line-height: 1.78;
}

.page-home .home-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-bottom: 2.6rem;
}

.page-home .home-hero__index {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 2.2rem;
  padding: 0;
  margin: 0;
  list-style: none;
}

.page-home .home-hero__index a {
  display: inline-flex;
  align-items: baseline;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.74);
  font-family: var(--font-mono);
  font-size: 0.8125rem;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.page-home .home-hero__index a:hover {
  color: var(--gold-sand);
  border-color: var(--gold-sand);
}

.page-home .home-hero__index span {
  color: var(--gold);
  font-weight: 700;
}

/* ===== 横向数据条 ===== */
.page-home .home-ticker {
  border-top: 4px solid var(--gold);
  border-bottom: 4px solid var(--gold);
  background: var(--black-night);
}

.page-home .home-ticker .ticker-item {
  color: var(--white);
  font-weight: 700;
}

/* ===== 实时数据大屏 ===== */
.page-home .home-data {
  padding-top: clamp(3rem, 7vw, 5.5rem);
  padding-bottom: clamp(3rem, 7vw, 5.5rem);
  background: var(--white);
}

.page-home .home-data__grid {
  display: grid;
  gap: 2.4rem;
}

.page-home .home-data__lead {
  max-width: 34em;
  color: var(--gray-mist);
  font-size: 1.0625rem;
  line-height: 1.75;
}

.page-home .home-data__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.1rem;
  margin: 2rem 0 1.6rem;
}

.page-home .home-data__stat {
  padding: 1.2rem 0.9rem;
  border: 2px solid var(--green-thunder);
  background: var(--white);
  box-shadow: 6px 6px 0 rgba(11, 61, 46, 0.14);
}

.page-home .home-data__stat:first-child {
  border-color: var(--gold);
}

.page-home .home-data__stat:first-child .home-data__stat-value {
  color: var(--gold);
}

.page-home .home-data__stat-value {
  display: block;
  font-family: var(--font-mono);
  font-size: clamp(1.7rem, 4vw, 2.7rem);
  font-weight: 700;
  line-height: 1;
  color: var(--green-deep);
}

.page-home .home-data__stat-label {
  display: block;
  margin-top: 0.5rem;
  color: var(--gray-mist);
  font-size: 0.8125rem;
}

.page-home .home-data__notes {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem 1.5rem;
  margin: 0;
  padding: 0 0 0 1rem;
  list-style: none;
  border-left: 4px solid var(--gold);
}

.page-home .home-data__notes li {
  color: var(--green-deep);
  font-size: 0.875rem;
}

.page-home .home-data__figure {
  margin: 0;
  aspect-ratio: 4 / 3;
  border: 3px solid var(--green-deep);
  background: var(--green-thunder);
  overflow: hidden;
  box-shadow: 12px 12px 0 var(--gold);
}

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

/* ===== 赛事内容目录 ===== */
.page-home .home-directory {
  padding-top: clamp(3rem, 7vw, 5.5rem);
  padding-bottom: clamp(3rem, 7vw, 5.5rem);
  background: var(--green-deep);
  color: var(--white);
}

.page-home .home-directory .section-head {
  max-width: 46em;
}

.page-home .home-directory .section-label {
  color: var(--gold);
}

.page-home .home-directory .section-title {
  color: var(--white);
}

.page-home .home-directory .section-lead {
  color: rgba(255, 255, 255, 0.78);
}

.page-home .home-directory__grid {
  display: grid;
  gap: 1.6rem;
  margin-top: 2.6rem;
}

.page-home .home-directory__card {
  display: flex;
  flex-direction: column;
  border: 3px solid var(--black-night);
  background: var(--white);
  color: var(--green-deep);
  box-shadow: 8px 8px 0 var(--gold);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.page-home .home-directory__card:hover {
  transform: translate(-4px, -4px) scale(1.01);
  box-shadow: 14px 14px 0 var(--gold-sand);
}

.page-home .home-directory__thumb {
  margin: 0;
  aspect-ratio: 16 / 9;
  border-bottom: 3px solid var(--black-night);
  overflow: hidden;
  background: var(--green-thunder);
}

.page-home .home-directory__thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.page-home .home-directory__card:hover .home-directory__thumb img {
  transform: scale(1.05);
}

.page-home .home-directory__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 1.3rem;
}

.page-home .home-directory__badge {
  color: var(--gray-mist);
  font-size: 0.75rem;
}

.page-home .home-directory__card-title {
  margin: 0.9rem 0 0.5rem;
  font-family: var(--font-heading);
  font-size: 1.3rem;
  line-height: 1.2;
  color: var(--green-deep);
  text-transform: uppercase;
}

.page-home .home-directory__card-text {
  flex: 1;
  margin: 0 0 1.2rem;
  color: var(--gray-mist);
  font-size: 0.9375rem;
  line-height: 1.65;
}

.page-home .home-directory__body .btn {
  align-self: flex-start;
}

/* ===== 球迷跟队入口 ===== */
.page-home .home-follow {
  padding-top: clamp(3rem, 7vw, 5.5rem);
  padding-bottom: clamp(3rem, 7vw, 5.5rem);
  background: var(--white);
}

.page-home .home-follow__grid {
  display: grid;
  gap: 2.4rem;
}

.page-home .home-follow__figure {
  position: relative;
  width: 100%;
  max-width: 440px;
  margin: 0 auto;
  aspect-ratio: 5 / 7;
  border: 3px solid var(--green-deep);
  background: var(--green-thunder);
  overflow: hidden;
  box-shadow: 14px 14px 0 var(--green-thunder);
}

.page-home .home-follow__figure::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 12px;
  z-index: 1;
  background: repeating-linear-gradient(45deg,
      var(--gold) 0 10px,
      var(--black-night) 10px 20px);
}

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

.page-home .home-follow__lead {
  max-width: 35em;
  color: var(--gray-mist);
  font-size: 1.0625rem;
  line-height: 1.75;
}

.page-home .home-follow__steps {
  display: grid;
  gap: 0.9rem;
  margin: 2rem 0 1.8rem;
  padding: 0;
  list-style: none;
}

.page-home .home-follow__steps li {
  display: flex;
  align-items: baseline;
  gap: 0.9rem;
  padding: 0.95rem 1rem;
  border: 1px solid rgba(30, 107, 79, 0.35);
  background: rgba(30, 107, 79, 0.06);
  color: var(--green-deep);
  font-size: 0.9375rem;
}

.page-home .home-follow__steps li:last-child {
  border-color: var(--gold);
}

.page-home .home-follow__steps li span {
  min-width: 1.8em;
  font-family: var(--font-mono);
  font-weight: 700;
  color: var(--gold);
}

.page-home .home-follow__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

/* ===== 底部服务条 ===== */
.page-home .home-cta {
  padding-top: clamp(3rem, 7vw, 5rem);
  padding-bottom: clamp(3rem, 7vw, 5rem);
  background: var(--green-deep);
  color: var(--white);
  text-align: center;
}

.page-home .home-cta .divider-line {
  margin: 0 auto 2.6rem;
  border-color: var(--gold);
}

.page-home .home-cta__kicker {
  margin-bottom: 0.75rem;
  color: var(--gold);
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.page-home .home-cta .section-title {
  color: var(--white);
  font-size: clamp(2.2rem, 5.5vw, 4rem);
}

.page-home .home-cta__lead {
  max-width: 42em;
  margin: 1rem auto 2rem;
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.0625rem;
  line-height: 1.75;
}

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

/* ===== 桌面端栅格 ===== */
@media (min-width: 760px) {
  .page-home .home-directory__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.8rem;
  }
}

@media (min-width: 900px) {
  .page-home .home-follow__grid {
    grid-template-columns: 0.85fr 1.15fr;
    align-items: center;
    gap: 4rem;
  }
}

@media (min-width: 960px) {
  .page-home .home-data__grid {
    grid-template-columns: 1.08fr 0.92fr;
    align-items: center;
    gap: 3.6rem;
  }
}
