.page-home {
  --home-paper: #FFFFFF;
  --home-line: rgba(10, 31, 68, 0.14);
  --home-line-light: rgba(245, 240, 232, 0.22);
  overflow-x: clip;
  background: var(--cream);
  color: var(--dark);
}

.page-home .home-breadcrumb {
  padding: 1.25rem 1.25rem 0;
}

.page-home .aside-note {
  font-size: 0.92rem;
  line-height: 1.65;
  color: var(--gray);
  border-left: 3px solid var(--accent);
  padding-left: 1rem;
}

.page-home .editorial-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 900px) {
  .page-home .editorial-grid {
    grid-template-columns: minmax(0, 2.2fr) minmax(0, 0.8fr);
    align-items: start;
  }
}

.page-home .section-number {
  display: inline-block;
  font-family: var(--font-headings);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  border-bottom: 2px solid var(--gold);
  padding-bottom: 0.4rem;
  margin-bottom: 1rem;
}

/* ===== 01 内容目录 ===== */
.page-home .home-toc {
  position: relative;
  padding: 2.5rem 0 3.5rem;
}

.page-home .home-toc::after {
  content: "";
  position: absolute;
  right: -4rem;
  top: 6rem;
  width: 14rem;
  height: 14rem;
  background: linear-gradient(135deg, transparent 0 45%, rgba(255, 107, 53, 0.14) 45% 55%, transparent 55%);
  pointer-events: none;
}

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

.page-home .home-toc__head-main {
  max-width: 56rem;
}

.page-home .home-toc h1 {
  font-family: var(--font-headings);
  font-size: clamp(2.4rem, 8vw, 5.5rem);
  line-height: 1.02;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: var(--primary);
  margin: 0 0 1rem;
  max-width: 12em;
}

.page-home .home-toc__lead {
  font-size: 1.06rem;
  line-height: 1.7;
  color: var(--gray);
  max-width: 36rem;
  margin: 0 0 2rem;
}

.page-home .home-toc__grid {
  display: grid;
  gap: 0.75rem;
  margin-top: 2rem;
}

.page-home .home-toc__card {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  background: var(--home-paper);
  border: 1px solid var(--home-line);
  border-left: 6px solid var(--primary);
  box-shadow: var(--shadow);
  padding: 1.25rem 1.3rem;
  text-decoration: none;
  color: inherit;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-left-color 0.18s ease;
}

.page-home .home-toc__card:hover {
  transform: translateY(-3px);
  box-shadow: 10px 10px 0 rgba(10, 31, 68, 0.18);
  border-left-color: var(--accent);
}

.page-home .home-toc__card-num {
  font-family: var(--font-data);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--accent);
}

.page-home .home-toc__card-title {
  font-family: var(--font-headings);
  font-size: 1.3rem;
  font-weight: 700;
  line-height: 1.25;
  color: var(--primary);
}

.page-home .home-toc__card-sub {
  font-size: 0.92rem;
  color: var(--gray);
  line-height: 1.5;
}

@media (min-width: 900px) {
  .page-home .home-toc__grid {
    grid-template-columns: repeat(6, 1fr);
    margin-top: 0.5rem;
  }

  .page-home .home-toc__card--feature {
    grid-column: span 3;
  }

  .page-home .home-toc__card--normal {
    grid-column: span 2;
  }
}

/* ===== 02 主题声明 ===== */
.page-home .home-statement {
  position: relative;
  background: var(--primary);
  color: var(--cream);
  padding: 3.5rem 0;
  overflow: hidden;
}

.page-home .home-statement::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    linear-gradient(115deg, transparent 0 68%, rgba(255, 107, 53, 0.24) 68% 69%, transparent 69% 100%),
    linear-gradient(115deg, transparent 0 78%, rgba(255, 215, 0, 0.14) 78% 79%, transparent 79% 100%);
  pointer-events: none;
}

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

.page-home .home-statement__grid {
  display: grid;
  gap: 2rem;
  align-items: center;
}

.page-home .home-statement h2 {
  font-family: var(--font-headings);
  font-size: clamp(2rem, 6vw, 3.6rem);
  text-transform: uppercase;
  line-height: 1.05;
  color: var(--gold);
  margin: 0 0 1rem;
}

.page-home .home-statement__quote {
  font-size: 1.15rem;
  line-height: 1.8;
  color: rgba(245, 240, 232, 0.92);
  max-width: 42rem;
  margin: 0 0 2rem;
  border-left: 4px solid var(--accent);
  padding-left: 1.25rem;
  font-style: italic;
}

.page-home .home-statement__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 2rem;
}

.page-home .home-statement .stat__value {
  font-family: var(--font-data);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  display: block;
}

.page-home .home-statement .stat__label {
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(245, 240, 232, 0.7);
}

.page-home .home-statement__media {
  margin: 0;
  border: 4px solid rgba(245, 240, 232, 0.25);
  box-shadow: 12px 12px 0 rgba(0, 0, 0, 0.18);
}

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

@media (min-width: 900px) {
  .page-home .home-statement__grid {
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  }

  .page-home .home-statement__media img {
    aspect-ratio: 3 / 2;
  }
}

/* ===== 03 半岛周末两场连看日程 ===== */
.page-home .home-weekend {
  padding: 3.5rem 0 4rem;
  background: var(--cream);
}

.page-home .home-weekend__head-main h2,
.page-home .home-compare h2,
.page-home .home-apple h2,
.page-home .home-news h2 {
  font-family: var(--font-headings);
  font-size: clamp(2rem, 6vw, 3.4rem);
  text-transform: uppercase;
  line-height: 1.05;
  margin: 0 0 0.75rem;
}

.page-home .home-weekend__head-main h2 {
  color: var(--primary);
}

.page-home .home-weekend__lead {
  color: var(--gray);
  font-size: 1.05rem;
  max-width: 34rem;
  margin: 0;
}

.page-home .home-weekend__timeline {
  display: grid;
  gap: 2rem;
  margin-top: 2rem;
}

.page-home .home-weekend__day-title {
  font-family: var(--font-headings);
  font-size: 1.5rem;
  text-transform: uppercase;
  color: var(--primary);
  border-bottom: 2px solid var(--gold);
  padding-bottom: 0.5rem;
  margin: 0;
}

.page-home .home-weekend__matches {
  list-style: none;
  margin: 1.5rem 0 0;
  padding: 0;
  display: grid;
  gap: 1rem;
}

.page-home .home-weekend__match {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.4rem 1rem;
  background: var(--home-paper);
  border: 1px solid var(--home-line);
  box-shadow: var(--shadow);
  padding: 1.2rem 1.2rem 1.2rem 3.4rem;
}

.page-home .home-weekend__match::before {
  content: "";
  position: absolute;
  left: 1.1rem;
  top: 50%;
  transform: translateY(-50%);
  width: 0.9rem;
  height: 0.9rem;
  border-radius: 50%;
  background: var(--primary);
  border: 3px solid var(--gold);
}

.page-home .home-weekend__time {
  font-family: var(--font-data);
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--accent);
}

.page-home .home-weekend__match-info {
  flex: 1 1 180px;
  display: grid;
  gap: 0.15rem;
}

.page-home .home-weekend__match-info strong {
  font-size: 1.05rem;
  color: var(--primary);
  line-height: 1.35;
}

.page-home .home-weekend__match-info em {
  font-style: normal;
  color: var(--gray);
  font-size: 0.95rem;
}

.page-home .home-weekend__match .badge {
  margin-left: auto;
}

.page-home .home-weekend__media {
  margin: 2rem 0 0;
  border: 4px solid var(--primary);
  box-shadow: var(--shadow);
}

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

@media (min-width: 900px) {
  .page-home .home-weekend__timeline {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }

  .page-home .home-weekend__day {
    position: relative;
    padding-left: 0;
  }

  .page-home .home-weekend__day::before {
    content: "";
    position: absolute;
    left: -1.25rem;
    top: 3.2rem;
    bottom: 1rem;
    width: 2px;
    background: linear-gradient(to bottom, var(--gold), var(--accent));
    opacity: 0.55;
  }
}

/* ===== 04 版本对比工具入口 ===== */
.page-home .home-compare {
  background: var(--primary);
  color: var(--cream);
  padding: 3.5rem 0 4rem;
  position: relative;
  overflow: hidden;
}

.page-home .home-compare::before {
  content: "";
  position: absolute;
  left: -6rem;
  bottom: -6rem;
  width: 16rem;
  height: 16rem;
  border: 2px solid rgba(255, 215, 0, 0.18);
  border-radius: 50%;
  pointer-events: none;
}

.page-home .home-compare__header {
  max-width: 52rem;
}

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

.page-home .home-compare__lead {
  font-size: 1.05rem;
  line-height: 1.75;
  color: rgba(245, 240, 232, 0.85);
  max-width: 38rem;
}

.page-home .home-compare__panel {
  display: grid;
  gap: 1rem;
  margin-top: 2rem;
}

.page-home .home-compare__card {
  background: rgba(245, 240, 232, 0.06);
  border: 1px solid rgba(245, 240, 232, 0.18);
  border-top: 4px solid var(--terracotta);
  padding: 1.4rem 1.4rem 1.6rem;
}

.page-home .home-compare__card--new {
  border-top-color: var(--gold);
}

.page-home .home-compare__card h3 {
  font-family: var(--font-headings);
  font-size: 1.35rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: #fff;
  margin: 0 0 1rem;
}

.page-home .home-compare__card ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.55rem;
}

.page-home .home-compare__card li {
  position: relative;
  padding-left: 1.2rem;
  color: rgba(245, 240, 232, 0.88);
  font-size: 0.98rem;
  line-height: 1.5;
}

.page-home .home-compare__card li::before {
  content: "▶";
  position: absolute;
  left: 0;
  top: 0;
  font-size: 0.65rem;
  color: var(--accent);
}

.page-home .home-compare__card--new li::before {
  color: var(--gold);
}

.page-home .home-compare__slider {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin: 0.25rem 0;
}

.page-home .home-compare__slider-track {
  height: 2px;
  flex: 1;
  background: rgba(245, 240, 232, 0.25);
}

.page-home .home-compare__slider-knob {
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 0.9rem;
  font-weight: 700;
  box-shadow: 0 0 0 4px rgba(255, 107, 53, 0.2);
}

.page-home .home-compare__axis {
  margin-top: 2.5rem;
  border-top: 1px solid rgba(245, 240, 232, 0.18);
  padding-top: 1rem;
  max-width: 42rem;
}

.page-home .home-compare__axis-label {
  font-family: var(--font-headings);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.85rem;
  color: rgba(245, 240, 232, 0.6);
  margin: 0 0 0.6rem;
}

.page-home .home-compare__axis-steps {
  display: flex;
  justify-content: space-between;
  font-family: var(--font-data);
  font-size: 0.85rem;
  color: var(--gold);
}

.page-home .home-compare__axis-track {
  height: 10px;
  background: rgba(245, 240, 232, 0.12);
  margin: 0.7rem 0 0;
  position: relative;
  border-radius: 999px;
  overflow: hidden;
}

.page-home .home-compare__axis-fill {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background: linear-gradient(90deg, var(--accent), var(--gold));
}

.page-home .home-compare__media {
  margin: 2rem 0 0;
  border: 4px solid var(--gold);
  box-shadow: 10px 10px 0 rgba(0, 0, 0, 0.2);
  max-width: 42rem;
}

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

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

@media (min-width: 900px) {
  .page-home .home-compare__panel {
    grid-template-columns: 1fr auto 1fr;
    align-items: stretch;
    gap: 1.5rem;
  }

  .page-home .home-compare__slider {
    flex-direction: column;
    margin: 0;
  }

  .page-home .home-compare__slider-track {
    width: 2px;
    height: 100%;
    flex: 1;
  }
}

/* ===== 05 苹果设备观赛体验 ===== */
.page-home .home-apple {
  background: var(--cream);
  padding: 3.5rem 0 4rem;
}

.page-home .home-apple__grid {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

.page-home .home-apple h2 {
  color: var(--primary);
}

.page-home .home-apple__lead {
  font-size: 1.08rem;
  line-height: 1.75;
  color: var(--gray);
  max-width: 36rem;
  margin: 0 0 1.5rem;
}

.page-home .home-apple__list {
  list-style: none;
  margin: 0 0 1.75rem;
  padding: 0;
  display: grid;
  gap: 0.7rem;
}

.page-home .home-apple__list li {
  position: relative;
  padding-left: 1.6rem;
  color: var(--dark);
  font-weight: 600;
  line-height: 1.5;
}

.page-home .home-apple__list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--accent);
  font-weight: 700;
}

.page-home .home-apple__media {
  margin: 0;
  border: 4px solid var(--primary);
  box-shadow: 14px 14px 0 rgba(10, 31, 68, 0.12);
}

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

@media (min-width: 900px) {
  .page-home .home-apple__grid {
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
  }

  .page-home .home-apple__media {
    max-width: 360px;
    justify-self: end;
  }
}

/* ===== 06 最新动态预览 ===== */
.page-home .home-news {
  background: var(--primary);
  color: var(--cream);
  padding: 3.5rem 0 4rem;
}

.page-home .home-news__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}

.page-home .home-news h2 {
  color: var(--gold);
  margin: 0.25rem 0 0;
}

.page-home .home-news__more {
  font-family: var(--font-headings);
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--accent);
  text-decoration: none;
  border-bottom: 2px solid var(--accent);
  padding-bottom: 0.2rem;
}

.page-home .home-news__grid {
  display: grid;
  gap: 1.25rem;
}

.page-home .home-news__item {
  background: var(--home-paper);
  border: 1px solid transparent;
  border-top: 5px solid var(--accent);
  padding: 1.5rem;
  box-shadow: 8px 8px 0 rgba(0, 0, 0, 0.16);
}

.page-home .home-news__item h3 {
  font-family: var(--font-headings);
  font-size: 1.25rem;
  line-height: 1.3;
  color: var(--primary);
  margin: 0.75rem 0 0.5rem;
}

.page-home .home-news__item p {
  font-size: 0.96rem;
  line-height: 1.6;
  color: var(--gray);
  margin: 0;
}

@media (min-width: 900px) {
  .page-home .home-news__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }
}
