.page-home {
  --cover-gap: 1.5rem;
  --section-pad-x: 1.25rem;
  --section-pad-y: 3rem;
  --match-shadow: 0 18px 36px rgba(11, 26, 60, 0.18);
  --case-shadow: 0 10px 24px rgba(11, 26, 60, 0.08);
  background: var(--ice-white);
  overflow-x: hidden;
}

.page-home img {
  max-width: 100%;
  height: auto;
}

/* ===== 首屏封面 ===== */
.page-home .home-cover {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: var(--cover-gap);
  max-width: var(--content-max, 1240px);
  margin: 0 auto;
  padding: 2.25rem var(--section-pad-x) 3rem;
  animation: pageHomeRise 480ms var(--ease) both;
}

@keyframes pageHomeRise {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: none; }
}

.page-home .cover-catalog {
  min-width: 0;
}

.page-home .cover-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-number);
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--signal-orange);
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.page-home .cover-eyebrow::before {
  content: "";
  width: 28px;
  height: 3px;
  background: var(--signal-orange);
  transform: skewX(-20deg);
}

.page-home .cover-catalog h1 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 6vw, 3rem);
  line-height: 1.08;
  letter-spacing: 0.02em;
  color: var(--deep-plum-blue);
  margin: 0 0 0.625rem;
}

.page-home .cover-tagline {
  font-size: 0.9375rem;
  color: var(--stone-gray);
  margin: 0 0 1.75rem;
  max-width: 38rem;
  line-height: 1.75;
}

.page-home .catalog-block {
  border-top: 1px solid var(--graphite-line);
  border-bottom: 1px solid var(--graphite-line);
  border-left: 3px solid var(--signal-orange);
  padding: 1.25rem 0.5rem 0.25rem 1rem;
  margin-bottom: 1.5rem;
}

.page-home .catalog-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.page-home .catalog-head h2 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  color: var(--mid-navy);
  letter-spacing: 0.04em;
  margin: 0;
}

.page-home .catalog-count {
  font-family: var(--font-number);
  font-size: 0.75rem;
  color: var(--stone-gray);
  white-space: nowrap;
}

.page-home .content-map {
  display: flex;
  flex-direction: column;
}

.page-home .map-row {
  display: grid;
  grid-template-columns: 2.25rem minmax(5.5rem, auto) 1fr auto;
  align-items: center;
  gap: 0.625rem;
  padding: 0.875rem 0.375rem;
  border-bottom: 1px dashed var(--graphite-line);
  text-decoration: none;
  transition: transform 180ms var(--ease), border-color 180ms var(--ease), background-color 180ms var(--ease);
}

.page-home .map-row:last-child {
  border-bottom: 0;
}

.page-home .map-row:hover {
  transform: translateX(6px);
  border-bottom-color: var(--signal-orange);
  background: rgba(255, 107, 0, 0.04);
}

.page-home .map-no {
  font-family: var(--font-number);
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--signal-orange);
}

.page-home .map-name {
  font-family: var(--font-heading);
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--deep-plum-blue);
  white-space: nowrap;
}

.page-home .map-desc {
  font-size: 0.8125rem;
  color: var(--stone-gray);
  text-align: right;
  line-height: 1.4;
}

.page-home .map-go {
  font-family: var(--font-number);
  font-size: 1rem;
  color: var(--signal-orange);
  opacity: 0.8;
  transition: opacity 180ms var(--ease), transform 180ms var(--ease);
}

.page-home .map-row:hover .map-go {
  opacity: 1;
  transform: translateX(3px);
}

.page-home .cover-data {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.625rem;
}

.page-home .data-cell {
  border: 1px solid var(--graphite-line);
  background: #fff;
  border-radius: 4px;
  padding: 0.875rem 0.625rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  transition: transform 180ms var(--ease), border-color 180ms var(--ease);
}

.page-home .data-cell:hover {
  transform: translateY(-2px);
  border-color: var(--light-orange);
}

.page-home .data-num {
  font-family: var(--font-number);
  font-size: 1.375rem;
  font-weight: 700;
  line-height: 1;
  color: var(--signal-orange);
}

.page-home .data-label {
  font-size: 0.6875rem;
  color: var(--stone-gray);
  line-height: 1.35;
}

/* ===== 周末两场速览 ===== */
.page-home .cover-match {
  background: linear-gradient(145deg, var(--deep-plum-blue) 0%, var(--mid-navy) 100%);
  border-top: 4px solid var(--signal-orange);
  border-radius: 12px;
  padding: 1.375rem 1.125rem;
  color: #fff;
  box-shadow: var(--match-shadow);
  min-width: 0;
  animation: pageHomeRise 560ms var(--ease) 120ms both;
}

.page-home .match-photo {
  margin: -1.375rem -1.125rem 1rem;
  border-radius: 12px 12px 0 0;
  overflow: hidden;
  aspect-ratio: 3 / 2;
  background: var(--mid-navy);
}

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

.page-home .match-head {
  margin-bottom: 1rem;
}

.page-home .match-kicker {
  display: block;
  font-family: var(--font-number);
  font-size: 0.6875rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--light-orange);
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.page-home .match-head h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.375rem, 4vw, 1.75rem);
  line-height: 1.15;
  color: #fff;
  margin: 0;
}

.page-home .match-list {
  display: grid;
  gap: 0.875rem;
}

.page-home .match-card {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  padding: 0.875rem 1rem;
  transition: background-color 180ms var(--ease), border-color 180ms var(--ease);
}

.page-home .match-card:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 107, 0, 0.5);
}

.page-home .match-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  margin-bottom: 0.375rem;
}

.page-home .match-day {
  font-family: var(--font-heading);
  font-size: 1.0625rem;
  font-weight: 700;
  color: #fff;
  margin: 0;
}

.page-home .match-status {
  font-size: 0.6875rem;
  font-weight: 600;
  padding: 0.25rem 0.625rem;
  border-radius: 999px;
  white-space: nowrap;
  background: rgba(16, 185, 129, 0.16);
  color: #6ee7b7;
  border: 1px solid rgba(16, 185, 129, 0.35);
}

.page-home .match-status--pending {
  background: rgba(255, 107, 0, 0.16);
  color: var(--light-orange);
  border-color: rgba(255, 107, 0, 0.35);
}

.page-home .match-teams {
  font-family: var(--font-number);
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--light-orange);
  margin: 0 0 0.625rem;
}

.page-home .match-rows {
  margin: 0;
  display: grid;
  gap: 0.375rem;
}

.page-home .match-rows > div {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.75rem;
  font-size: 0.8125rem;
}

.page-home .match-rows dt {
  color: rgba(255, 255, 255, 0.6);
}

.page-home .match-rows dd {
  margin: 0;
  font-family: var(--font-number);
  font-weight: 700;
  color: #fff;
  text-align: right;
}

.page-home .match-meta-line {
  margin: 1rem 0 0;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.55);
  letter-spacing: 0.04em;
  line-height: 1.5;
}

.page-home .match-link {
  margin-top: 0.75rem;
  display: inline-block;
  font-size: 0.8125rem;
  color: var(--light-orange);
  text-decoration: none;
  border-bottom: 1px dashed rgba(255, 179, 122, 0.6);
  line-height: 1.5;
}

.page-home .match-link:hover {
  color: var(--signal-orange);
}

/* ===== 球队库与联赛导航 ===== */
.page-home .home-archive {
  background: #fff;
  border-top: 1px solid var(--graphite-line);
  padding: var(--section-pad-y) var(--section-pad-x);
}

.page-home .archive-inner {
  max-width: var(--content-max, 1240px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 2rem;
}

.page-home .archive-visual {
  min-width: 0;
}

.page-home .archive-visual img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: var(--case-shadow);
}

.page-home .section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-number);
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--signal-orange);
  margin-bottom: 0.5rem;
}

.page-home .section-kicker::before {
  content: "";
  width: 24px;
  height: 3px;
  background: var(--signal-orange);
  transform: skewX(-20deg);
}

.page-home .archive-content h2,
.page-home .client-content h2,
.page-home .cases-head h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 5vw, 2.5rem);
  line-height: 1.08;
  color: var(--deep-plum-blue);
  margin: 0 0 0.75rem;
}

.page-home .archive-lead {
  font-size: 0.9375rem;
  color: var(--stone-gray);
  margin-bottom: 1.25rem;
  max-width: 34rem;
  line-height: 1.75;
}

.page-home .feature-list,
.page-home .client-features {
  list-style: none;
  margin: 0 0 1.25rem;
  padding: 0;
  display: grid;
  gap: 0.625rem;
}

.page-home .feature-list li,
.page-home .client-features li {
  position: relative;
  padding-left: 1.5rem;
  font-size: 0.9375rem;
  color: var(--ink-dark);
  line-height: 1.6;
}

.page-home .feature-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 10px;
  height: 10px;
  background: var(--signal-orange);
  transform: skewX(-14deg);
}

.page-home .archive-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.625rem;
  margin-top: 1.75rem;
}

.page-home .stat-block {
  border: 1px solid var(--graphite-line);
  background: var(--ice-white);
  padding: 0.875rem 0.625rem;
  text-align: center;
}

.page-home .stat-num {
  display: block;
  font-family: var(--font-number);
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--deep-plum-blue);
  line-height: 1;
}

.page-home .stat-label {
  display: block;
  font-size: 0.6875rem;
  color: var(--stone-gray);
  margin-top: 0.25rem;
  line-height: 1.35;
}

.page-home .archive-cta,
.page-home .cases-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

/* ===== 按钮（页面内补充） ===== */
.page-home .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.625rem 1.375rem;
  font-family: var(--font-heading);
  font-size: 0.9375rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-decoration: none;
  border-radius: 4px;
  transition: background-color 180ms var(--ease), border-color 180ms var(--ease), color 180ms var(--ease), transform 180ms var(--ease);
}

.page-home .btn-primary {
  background: var(--signal-orange);
  color: var(--deep-plum-blue);
  border: 1px solid var(--signal-orange);
}

.page-home .btn-primary:hover {
  background: var(--light-orange);
  border-color: var(--light-orange);
  transform: translateY(-2px);
}

.page-home .btn-outline {
  border: 1px solid var(--deep-plum-blue);
  color: var(--deep-plum-blue);
  background: transparent;
}

.page-home .btn-outline:hover {
  border-color: var(--signal-orange);
  color: var(--signal-orange);
  transform: translateY(-2px);
}

/* ===== 中文版客户端 ===== */
.page-home .home-client {
  background: linear-gradient(145deg, var(--deep-plum-blue) 0%, var(--mid-navy) 100%);
  color: #fff;
  padding: var(--section-pad-y) var(--section-pad-x);
  position: relative;
  overflow: hidden;
}

.page-home .home-client::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--signal-orange) 0%, var(--light-orange) 100%);
  transform: skewY(-1.5deg);
  transform-origin: left top;
}

.page-home .home-client::after {
  content: "";
  position: absolute;
  left: -8%;
  top: 20%;
  width: 116%;
  height: 60%;
  background: rgba(255, 107, 0, 0.05);
  transform: skewY(-2deg);
  pointer-events: none;
}

.page-home .client-inner {
  max-width: var(--content-max, 1240px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 2rem;
  position: relative;
  z-index: 1;
}

.page-home .client-content {
  min-width: 0;
}

.page-home .home-client .section-kicker {
  color: var(--light-orange);
}

.page-home .home-client .section-kicker::before {
  background: var(--light-orange);
}

.page-home .client-content h2 {
  color: #fff;
}

.page-home .client-lead {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 1.25rem;
  max-width: 34rem;
  line-height: 1.75;
}

.page-home .client-features li {
  color: rgba(255, 255, 255, 0.84);
}

.page-home .client-features li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.4em;
  width: 10px;
  height: 10px;
  border: 2px solid var(--signal-orange);
  background: transparent;
}

.page-home .client-meta {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.page-home .meta-cell {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  padding: 0.875rem 1rem;
}

.page-home .meta-num {
  display: block;
  font-family: var(--font-number);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--signal-orange);
  line-height: 1;
}

.page-home .meta-label {
  display: block;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 0.25rem;
  line-height: 1.4;
}

.page-home .home-client .btn-primary {
  background: var(--signal-orange);
  color: var(--deep-plum-blue);
}

.page-home .home-client .btn-primary:hover {
  background: var(--light-orange);
}

.page-home .client-visual {
  min-width: 0;
  max-width: 460px;
  margin: 0 auto;
}

.page-home .client-visual img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: 12px;
}

.page-home .visual-caption {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.6);
  text-align: center;
  margin: 0.625rem 0 0;
  line-height: 1.5;
}

/* ===== 案例合集：主客场表现对照 ===== */
.page-home .home-cases {
  background: var(--ice-white);
  border-top: 1px solid var(--graphite-line);
  padding: var(--section-pad-y) var(--section-pad-x);
}

.page-home .cases-head,
.page-home .cases-visual,
.page-home .cases-grid,
.page-home .cases-cta {
  max-width: var(--content-max, 1240px);
  margin-left: auto;
  margin-right: auto;
}

.page-home .cases-head {
  margin-bottom: 1.25rem;
}

.page-home .cases-head p {
  font-size: 0.9375rem;
  color: var(--stone-gray);
  max-width: 40rem;
  margin: 0.75rem 0 0;
  line-height: 1.75;
}

.page-home .cases-visual {
  margin-bottom: 1.5rem;
}

.page-home .cases-visual img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: var(--case-shadow);
}

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

.page-home .case-card {
  background: #fff;
  border: 1px solid var(--graphite-line);
  border-left: 4px solid var(--signal-orange);
  border-radius: 4px;
  padding: 1.125rem 1rem;
  transition: transform 180ms var(--ease), border-color 180ms var(--ease), box-shadow 180ms var(--ease);
}

.page-home .case-card:hover {
  transform: translateY(-2px);
  border-left-color: var(--deep-plum-blue);
  border-color: var(--light-orange);
  box-shadow: var(--case-shadow);
}

.page-home .case-dim {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.1875rem;
  font-weight: 700;
  color: var(--deep-plum-blue);
  margin-bottom: 0.25rem;
}

.page-home .case-desc {
  display: block;
  font-size: 0.875rem;
  color: var(--stone-gray);
  margin-bottom: 0.625rem;
  line-height: 1.6;
}

.page-home .case-meta {
  display: inline-block;
  font-family: var(--font-number);
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--signal-orange);
}

/* ===== 桌面端增强 ===== */
@media (min-width: 900px) {
  .page-home {
    --section-pad-x: 2rem;
    --section-pad-y: 4rem;
  }

  .page-home .home-cover {
    grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
    gap: 2rem;
    padding: 3.5rem 2rem 4rem;
  }

  .page-home .cover-data {
    gap: 0.75rem;
  }

  .page-home .data-num {
    font-size: 1.75rem;
  }

  .page-home .data-label {
    font-size: 0.75rem;
  }

  .page-home .archive-inner {
    grid-template-columns: minmax(0, 4fr) minmax(0, 5fr);
    align-items: center;
    gap: 3rem;
  }

  .page-home .client-inner {
    grid-template-columns: minmax(0, 1fr) minmax(0, 340px);
    align-items: center;
    gap: 3rem;
  }

  .page-home .cases-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
  }

  .page-home .match-photo {
    aspect-ratio: 3 / 2;
  }
}

@media (prefers-reduced-motion: reduce) {
  .page-home *,
  .page-home *::before,
  .page-home *::after {
    animation: none !important;
    transition: none !important;
  }
}
