.page-home {
  background-color: var(--paper);
  overflow-x: hidden;
}

/* ========== 首屏框景 · 天然体育场 ========== */
.page-home .home-hero {
  position: relative;
  background: var(--deep-blue);
  color: var(--white);
  padding: 56px 0 44px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.page-home .home-hero__wave {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 180px;
  z-index: 0;
  pointer-events: none;
}

.page-home .home-hero__inner {
  position: relative;
  z-index: 2;
  border: 1px solid rgba(201, 162, 75, 0.75);
  background: rgba(15, 26, 44, 0.55);
  padding: clamp(20px, 4vw, 44px);
}

.page-home .home-hero__inner::before {
  content: "";
  position: absolute;
  inset: 6px;
  border: 1px dashed rgba(201, 162, 75, 0.35);
  z-index: 0;
  pointer-events: none;
}

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

.page-home .home-hero__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.page-home .home-hero__kicker {
  color: var(--gold);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin: 0 0 14px;
}

.page-home .home-hero h1 {
  font-family: var(--head-font);
  font-size: clamp(1.9rem, 4.5vw, 3.4rem);
  line-height: 1.2;
  font-weight: 900;
  color: var(--white);
  margin: 0 0 18px;
}

.page-home .home-hero__lead {
  color: rgba(255, 255, 255, 0.78);
  font-size: 1rem;
  line-height: 1.8;
  max-width: 520px;
  margin: 0 0 28px;
}

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

.page-home .btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 11px 22px;
  border: 1px solid var(--gold);
  border-radius: var(--radius);
  color: var(--gold);
  background: transparent;
  font-weight: 700;
  font-size: 0.94rem;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.page-home .btn-ghost:hover {
  background: var(--gold);
  color: var(--deep-blue);
  transform: translateY(-1px);
}

.page-home .home-hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 30px;
  margin: 34px 0 0;
  padding: 18px 0 0;
  border-top: 1px solid rgba(201, 162, 75, 0.35);
}

.page-home .home-hero__meta-item {
  display: flex;
  align-items: baseline;
  gap: 6px;
}

.page-home .home-hero__meta-item dt {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.82rem;
}

.page-home .home-hero__meta-item dd {
  margin: 0;
  color: var(--gold);
  font-family: var(--num-font);
  font-weight: 700;
  font-size: 1.3rem;
}

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

.page-home .home-hero__visual::before {
  content: "";
  position: absolute;
  inset: -10px -10px auto auto;
  width: 100%;
  height: 100%;
  border: 2px solid rgba(201, 162, 75, 0.4);
  z-index: 0;
}

.page-home .home-hero__img {
  display: block;
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  border: 3px solid rgba(201, 162, 75, 0.8);
  box-shadow: 0 24px 56px rgba(0, 0, 0, 0.45);
}

.page-home .home-hero__fig {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.82rem;
  text-align: right;
  letter-spacing: 0.08em;
}

.page-home .home-hero__corner {
  position: absolute;
  z-index: 3;
  width: 36px;
  height: 36px;
  pointer-events: none;
}

.page-home .home-hero__corner-tl {
  top: 14px;
  left: 14px;
  border-top: 4px solid var(--gold);
  border-left: 4px solid var(--gold);
}

.page-home .home-hero__corner-tr {
  top: 14px;
  right: 14px;
  border-top: 4px solid var(--gold);
  border-right: 4px solid var(--gold);
}

.page-home .home-hero__corner-bl {
  bottom: 14px;
  left: 14px;
  border-bottom: 4px solid var(--gold);
  border-left: 4px solid var(--gold);
}

.page-home .home-hero__corner-br {
  bottom: 14px;
  right: 14px;
  border-bottom: 4px solid var(--gold);
  border-right: 4px solid var(--gold);
}

.page-home .home-hero::after {
  content: "";
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 10px;
  height: 6px;
  z-index: 2;
  background: repeating-linear-gradient(90deg, var(--gold) 0 2px, transparent 2px 9px);
  opacity: 0.5;
  pointer-events: none;
}

.page-home .only-lg {
  display: none;
}

/* ========== 通用章节头 ========== */
.page-home .home-section-head {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 36px;
}

.page-home .home-section-head__number {
  font-family: var(--num-font);
  font-size: clamp(4.5rem, 9vw, 7.5rem);
  line-height: 0.75;
  min-width: 0.8em;
  color: var(--green);
  opacity: 0.45;
  flex-shrink: 0;
}

.page-home .home-section-head__text h2 {
  font-family: var(--head-font);
  font-size: clamp(1.8rem, 3.6vw, 2.9rem);
  line-height: 1.2;
  font-weight: 900;
  color: var(--night);
  margin: 0 0 10px;
}

.page-home .home-section-head__desc {
  font-size: 0.98rem;
  line-height: 1.7;
  color: #455769;
  max-width: 620px;
  margin: 0;
}

/* ========== 01 赛事内容目录 ========== */
.page-home .home-catalog {
  background: var(--paper);
  padding: 72px 0;
}

.page-home .home-catalog__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  margin-bottom: 28px;
}

.page-home .catalog-card {
  --card-accent: var(--green);
  position: relative;
  display: block;
  background: var(--white);
  padding: 26px 22px 24px;
  border-top: 4px solid var(--card-accent);
  clip-path: polygon(0 0, calc(100% - 20px) 0, 100% 20px, 100% 100%, 0 100%);
  box-shadow: 0 6px 16px rgba(15, 26, 44, 0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.page-home .catalog-card:nth-child(1) { --card-accent: var(--green); }
.page-home .catalog-card:nth-child(2) { --card-accent: var(--gold); }
.page-home .catalog-card:nth-child(3) { --card-accent: var(--orange); }
.page-home .catalog-card:nth-child(4) { --card-accent: var(--deep-blue); }
.page-home .catalog-card:nth-child(5) { --card-accent: var(--green-deep); }
.page-home .catalog-card:nth-child(6) { --card-accent: var(--orange); }

.page-home .catalog-card::after {
  content: "";
  position: absolute;
  top: 12px;
  right: 16px;
  width: 8px;
  height: 8px;
  background: var(--card-accent);
  transform: rotate(45deg);
}

.page-home .catalog-card__num {
  display: block;
  font-family: var(--num-font);
  font-size: 3.2rem;
  line-height: 1;
  font-weight: 700;
  color: var(--card-accent);
  opacity: 0.22;
  margin-bottom: 10px;
}

.page-home .catalog-card__title {
  font-family: var(--head-font);
  font-weight: 900;
  font-size: 1.3rem;
  color: var(--night);
  margin: 0 0 8px;
}

.page-home .catalog-card__desc {
  font-size: 0.92rem;
  line-height: 1.7;
  color: #556577;
  margin: 0 0 16px;
}

.page-home .catalog-card__link {
  display: inline-block;
  color: var(--card-accent);
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;
}

.page-home .catalog-card__link:hover {
  text-decoration: underline;
}

.page-home .catalog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 30px rgba(15, 26, 44, 0.14);
}

.page-home .catalog-card:hover .catalog-card__num {
  opacity: 0.5;
}

.page-home .home-catalog__extras {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
  align-items: center;
  margin-bottom: 34px;
}

.page-home .home-catalog__fig {
  margin: 0;
  border: 2px solid var(--gold);
  padding: 6px;
  background: var(--mist);
}

.page-home .home-catalog__fig img {
  display: block;
  width: 100%;
  height: auto;
}

.page-home .home-catalog__stats {
  margin: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.page-home .home-catalog__stat {
  background: var(--deep-blue);
  padding: 18px 20px;
  border-left: 5px solid var(--gold);
}

.page-home .home-catalog__stat dt {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.85rem;
  margin-bottom: 6px;
}

.page-home .home-catalog__stat dd {
  margin: 0;
  color: var(--gold);
  font-family: var(--num-font);
  font-weight: 700;
  font-size: 1.6rem;
  line-height: 1;
}

.page-home .home-catalog__foot {
  text-align: center;
}

/* ========== 02 为什么选择半岛WITH ========== */
.page-home .home-benefits {
  background: var(--deep-blue);
  padding: 72px 0;
}

.page-home .home-benefits .home-section-head__number {
  color: var(--gold);
  opacity: 0.6;
}

.page-home .home-benefits .home-section-head h2 {
  color: var(--white);
}

.page-home .home-benefits .home-section-head__desc {
  color: rgba(255, 255, 255, 0.72);
}

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

.page-home .home-benefits__cards {
  display: grid;
  gap: 14px;
}

.page-home .benefit-card {
  background: var(--mist);
  border-left: 6px solid var(--gold);
  border-radius: var(--radius);
  padding: 24px 24px 22px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  position: relative;
}

.page-home .benefit-card:nth-child(2) {
  border-left-color: var(--green);
}

.page-home .benefit-card:nth-child(3) {
  border-left-color: var(--orange);
}

.page-home .benefit-card:hover {
  transform: translateX(6px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
}

.page-home .benefit-card__title {
  font-family: var(--head-font);
  font-weight: 900;
  font-size: 1.25rem;
  color: var(--night);
  margin: 0 0 8px;
}

.page-home .benefit-card__desc {
  font-size: 0.94rem;
  line-height: 1.75;
  color: #2f4560;
  margin: 0 0 14px;
}

.page-home .benefit-card__link {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--green-deep);
  text-decoration: none;
}

.page-home .benefit-card__link:hover {
  text-decoration: underline;
}

.page-home .home-benefits__phone {
  margin: 0;
  text-align: center;
}

.page-home .home-benefits__phone-border {
  max-width: 260px;
  margin: 0 auto;
  padding: 10px 6px 14px;
  border: 6px solid var(--night);
  border-radius: 28px;
  background: var(--night);
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.45);
}

.page-home .home-benefits__phone-border img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 18px;
}

.page-home .home-benefits__phone figcaption {
  margin-top: 12px;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.6);
}

.page-home .home-benefits__cta {
  margin-top: 40px;
  text-align: center;
}

.page-home .home-benefits__cta .btn-ghost {
  margin-left: 8px;
}

/* ========== 03 三步上手指南 ========== */
.page-home .home-guide {
  background: var(--mist);
  padding: 72px 0;
}

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

.page-home .guide-step {
  background: var(--white);
  padding: 30px 26px;
  box-shadow: 0 6px 18px rgba(15, 26, 44, 0.06);
  border-radius: var(--radius);
  position: relative;
}

.page-home .guide-step::before {
  content: "";
  position: absolute;
  left: 0;
  top: 36px;
  bottom: 36px;
  width: 4px;
  background: var(--green);
}

.page-home .guide-step:nth-child(2)::before {
  background: var(--gold);
}

.page-home .guide-step:nth-child(3)::before {
  background: var(--orange);
}

.page-home .guide-step__num {
  display: block;
  font-family: var(--num-font);
  font-size: 3.6rem;
  line-height: 1;
  font-weight: 700;
  color: var(--green);
  opacity: 0.35;
  margin-bottom: 14px;
}

.page-home .guide-step h3 {
  font-family: var(--head-font);
  font-weight: 900;
  font-size: 1.25rem;
  color: var(--night);
  margin: 0 0 12px;
}

.page-home .guide-step p {
  font-size: 0.94rem;
  line-height: 1.8;
  color: #4a5d70;
  margin: 0 0 14px;
}

.page-home .guide-step a {
  color: var(--green-deep);
  font-weight: 700;
  font-size: 0.88rem;
  text-decoration: none;
}

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

.page-home .home-guide__foot {
  margin-top: 32px;
  text-align: center;
}

/* ========== 04 最新赛事观察 ========== */
.page-home .home-insights {
  background: var(--paper);
  padding: 72px 0;
}

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

.page-home .insight-card {
  background: var(--white);
  padding: 26px 24px;
  border-bottom: 4px solid var(--green);
  box-shadow: 0 6px 16px rgba(15, 26, 44, 0.05);
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.page-home .insight-card:hover {
  box-shadow: 0 12px 28px rgba(15, 26, 44, 0.12);
  transform: translateY(-3px);
}

.page-home .insight-card__tag {
  align-self: flex-start;
  background: var(--gold);
  color: var(--night);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 4px 10px;
  border-radius: 2px;
  margin-bottom: 14px;
}

.page-home .insight-card h3 {
  font-family: var(--head-font);
  font-weight: 900;
  font-size: 1.2rem;
  line-height: 1.6;
  color: var(--night);
  margin: 0 0 10px;
}

.page-home .insight-card p {
  font-size: 0.92rem;
  line-height: 1.75;
  color: #53657a;
  margin: 0 0 18px;
  flex: 1;
}

.page-home .insight-card a {
  color: var(--green-deep);
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;
}

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

.page-home .home-insights__foot {
  margin-top: 36px;
  text-align: center;
}

/* ========== 05 半岛回声 ========== */
.page-home .home-echo {
  background: var(--deep-blue);
  padding: 72px 0 0;
  overflow: hidden;
}

.page-home .home-echo .home-section-head__number {
  color: var(--gold);
  opacity: 0.6;
}

.page-home .home-echo .home-section-head h2 {
  color: var(--white);
}

.page-home .home-echo .home-section-head__desc {
  color: rgba(255, 255, 255, 0.72);
}

.page-home .home-echo__quote {
  max-width: 760px;
  margin: 20px auto 30px;
  text-align: center;
  position: relative;
  padding: 20px 16px 0;
}

.page-home .home-echo__quote::before {
  content: "“";
  font-family: var(--num-font);
  font-size: 100px;
  color: var(--gold);
  line-height: 0.6;
  display: block;
  margin-bottom: 10px;
}

.page-home .home-echo__quote p {
  font-family: var(--head-font);
  font-weight: 900;
  font-size: clamp(1.3rem, 2.4vw, 1.8rem);
  line-height: 1.8;
  color: var(--paper);
  margin: 0;
}

.page-home .home-echo__quote footer {
  margin-top: 18px;
  color: var(--gold);
  font-size: 0.9rem;
}

.page-home .home-echo__cta {
  text-align: center;
  margin-bottom: 40px;
}

.page-home .home-echo__hint {
  margin: 18px auto 0;
  max-width: 480px;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.85rem;
  line-height: 1.8;
}

.page-home .home-echo__hint a {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.page-home .home-echo__banner {
  display: block;
  width: 100%;
  height: auto;
}

/* ========== 桌面端增强 ========== */
@media (min-width: 680px) {
  .page-home .home-catalog__grid {
    grid-template-columns: 1fr 1fr;
  }

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

  .page-home .home-benefits__layout {
    grid-template-columns: 1.15fr 0.85fr;
    gap: 40px;
  }

  .page-home .home-benefits__phone-border {
    max-width: 280px;
  }
}

@media (min-width: 900px) {
  .page-home .home-hero {
    min-height: calc(100vh - var(--header-h));
    padding: 72px 0;
  }

  .page-home .home-hero__grid {
    grid-template-columns: 1.1fr 0.9fr;
  }

  .page-home .only-lg {
    display: inline;
  }
}

@media (min-width: 1024px) {
  .page-home .home-catalog__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .page-home .home-catalog__extras {
    grid-template-columns: 360px 1fr;
  }

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

  .page-home .home-guide__steps .guide-step:nth-child(2) {
    margin-top: 30px;
  }

  .page-home .home-guide__steps .guide-step:nth-child(3) {
    margin-top: 12px;
  }

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