.page-home {
  --home-deep: #062A20;
  --home-soft: #0E4A38;
  --home-gold: #D4AF37;
  --home-crimson: #E63946;
  --home-mint: #A8D5BA;
  --home-rice: #F5F0E6;
  --home-cloud: #F8F9FA;
  --home-teal: #2A9D8F;
  --home-shadow: 0 10px 32px rgba(10, 61, 46, 0.14);
  --home-shadow-soft: 0 6px 18px rgba(10, 61, 46, 0.12);
  font-family: var(--sis-font);
  color: var(--sis-carbon);
  line-height: 1.6;
}

/* ===== 首页面包屑 ===== */
.page-home .home-breadcrumbs {
  padding: 20px 0 0;
  background: var(--home-deep);
}
.page-home .home-breadcrumbs .sis-breadcrumbs ol {
  margin: 0;
}

/* ===== 首页 Hero / 分屏首屏 ===== */
.page-home .home-hero {
  position: relative;
  overflow: hidden;
  padding: 40px 0 48px;
  background:
    radial-gradient(ellipse at 85% 12%, rgba(212, 175, 55, 0.18), transparent 55%),
    radial-gradient(ellipse at 8% 85%, rgba(42, 157, 143, 0.22), transparent 60%),
    linear-gradient(135deg, #0A3D2E 0%, #062A20 100%);
  color: var(--sis-cloud);
}
.page-home .home-hero .sis-hero__eyebrow {
  color: var(--sis-gold);
  font-family: var(--sis-mono);
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.page-home .home-hero__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: center;
}
.page-home .home-hero__title {
  margin: 12px 0 16px;
  font-size: 32px;
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.02em;
  transform: skewX(-5deg);
  transform-origin: left bottom;
  color: var(--sis-cloud);
}
.page-home .home-hero__lead {
  margin: 0 0 18px;
  font-size: 16px;
  line-height: 1.7;
  color: rgba(248, 249, 250, 0.88);
}
.page-home .home-hero__points {
  list-style: none;
  margin: 0 0 24px;
  padding: 0;
  display: grid;
  gap: 10px;
}
.page-home .home-hero__points li {
  position: relative;
  padding-left: 22px;
  font-size: 14px;
  line-height: 1.6;
  color: rgba(248, 249, 250, 0.82);
}
.page-home .home-hero__points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 10px;
  height: 10px;
  background: var(--sis-gold);
  border-radius: 2px;
  transform: rotate(45deg);
}
.page-home .home-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 16px;
}
.page-home .home-hero__note {
  margin: 0;
  font-size: 13px;
  line-height: 1.6;
  color: rgba(248, 249, 250, 0.62);
  border-left: 2px solid var(--sis-gold);
  padding-left: 12px;
}

/* ===== 首页 Hero 视觉 ===== */
.page-home .home-hero__visual {
  position: relative;
  min-height: 300px;
  height: 320px;
  border-radius: 24px;
  overflow: hidden;
  background: var(--home-deep);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.35);
}
.page-home .home-hero__photo {
  position: absolute;
  inset: 0;
  margin: 0;
}
.page-home .home-hero__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.page-home .home-hero__overlay {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  display: block;
  mix-blend-mode: screen;
  opacity: 0.94;
}
.page-home .home-hero__badge {
  position: absolute;
  z-index: 3;
  left: 16px;
  bottom: 16px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 999px;
  border: 1px solid rgba(212, 175, 55, 0.5);
  background: rgba(6, 42, 32, 0.85);
  color: var(--sis-gold);
  font-family: var(--sis-mono);
  font-size: 12px;
  letter-spacing: 0.06em;
}
.page-home .home-hero__badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--sis-red);
  animation: homePulse 1.6s ease-in-out infinite;
}
@keyframes homePulse {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.6;
    transform: scale(0.72);
  }
}

/* ===== 首页数据条带 ===== */
.page-home .home-statbar {
  background: var(--home-deep);
  padding: 28px 0;
  border-bottom: 1px solid rgba(212, 175, 55, 0.22);
}
.page-home .home-statbar__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
.page-home .home-statbar__item {
  border-left: 2px solid rgba(212, 175, 55, 0.5);
  padding-left: 14px;
}
.page-home .home-statbar__item .sis-data__num {
  display: block;
  font-size: 26px;
  line-height: 1.2;
}
.page-home .home-statbar__item .sis-data__label {
  display: block;
  margin-top: 2px;
  font-size: 13px;
  line-height: 1.4;
  color: rgba(248, 249, 250, 0.75);
}

/* ===== 本季存档超1200场 ===== */
.page-home .home-archive {
  background: var(--sis-rice);
  padding: 56px 0;
}
.page-home .home-archive .sis-section__sub {
  color: var(--sis-gold-dark);
  font-family: var(--sis-mono);
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.page-home .home-archive__head {
  display: grid;
  gap: 12px;
  margin-bottom: 32px;
}
.page-home .home-archive__head .sis-section__title {
  margin: 4px 0 0;
  font-size: 28px;
  font-weight: 800;
  line-height: 1.2;
  color: var(--sis-green);
}
.page-home .home-archive__lead {
  margin: 0;
  max-width: 52ch;
  font-size: 15px;
  line-height: 1.7;
  color: var(--sis-carbon);
}
.page-home .home-archive__grid {
  display: grid;
  gap: 24px;
}
.page-home .home-archive__feature {
  position: relative;
  overflow: hidden;
  padding: 32px 28px;
  border-radius: 24px;
  background: linear-gradient(135deg, #0A3D2E 0%, #062A20 100%);
  color: var(--sis-cloud);
}
.page-home .home-archive__feature::after {
  content: "";
  position: absolute;
  right: -24px;
  bottom: -24px;
  width: 120px;
  height: 120px;
  border: 2px solid rgba(212, 175, 55, 0.3);
  border-radius: 50%;
}
.page-home .home-archive__big-num {
  display: block;
  font-family: var(--sis-mono);
  font-size: 64px;
  font-weight: 800;
  line-height: 1;
  color: var(--sis-gold);
}
.page-home .home-archive__big-num sup {
  font-size: 32px;
  top: -18px;
}
.page-home .home-archive__big-label {
  display: block;
  margin-top: 10px;
  font-size: 16px;
  font-weight: 600;
  color: rgba(248, 249, 250, 0.85);
}
.page-home .home-archive__trust {
  margin: 24px 0 0;
  padding-top: 20px;
  border-top: 1px solid rgba(212, 175, 55, 0.25);
  font-size: 14px;
  line-height: 1.7;
  color: rgba(248, 249, 250, 0.65);
}
.page-home .home-archive__index {
  background: var(--sis-cloud);
  border-radius: 24px;
  padding: 28px 24px;
  box-shadow: var(--home-shadow);
  list-style: none;
  margin: 0;
}
.page-home .home-archive__more {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
  margin-top: 28px;
}
.page-home .home-archive__link {
  color: var(--sis-gold-dark);
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
}
.page-home .home-archive__link:hover {
  text-decoration: underline;
}

/* ===== 移动端随时掌握 ===== */
.page-home .home-mobile {
  padding: 56px 0;
  background:
    radial-gradient(ellipse at 10% 90%, rgba(212, 175, 55, 0.14), transparent 55%),
    linear-gradient(135deg, #0A3D2E 0%, #062A20 100%);
  color: var(--sis-cloud);
}
.page-home .home-mobile .sis-section__sub {
  color: var(--sis-gold);
  font-family: var(--sis-mono);
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.page-home .home-mobile__grid {
  display: grid;
  align-items: center;
  gap: 32px;
}
.page-home .home-mobile__visual {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
}
.page-home .home-mobile__visual img {
  display: block;
  width: 100%;
  height: auto;
}
.page-home .home-mobile__content .sis-section__title {
  margin: 6px 0 0;
  font-size: 28px;
  font-weight: 800;
  line-height: 1.2;
  color: var(--sis-cloud);
}
.page-home .home-mobile__content > p {
  margin: 14px 0 20px;
  font-size: 15px;
  line-height: 1.7;
  color: rgba(248, 249, 250, 0.85);
}
.page-home .home-mobile__list {
  list-style: none;
  margin: 0 0 24px;
  padding: 0;
  display: grid;
  gap: 12px;
}
.page-home .home-mobile__list li {
  padding: 12px 14px;
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.06);
  font-size: 14px;
  line-height: 1.6;
  color: rgba(248, 249, 250, 0.9);
}
.page-home .home-mobile__list strong {
  margin-right: 6px;
  color: var(--sis-gold);
  font-weight: 700;
}

/* ===== 数据查询服务 ===== */
.page-home .home-data {
  padding: 56px 0;
  background: var(--sis-cloud);
}
.page-home .home-data .sis-section__sub {
  color: var(--sis-gold-dark);
  font-family: var(--sis-mono);
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.page-home .home-data__head .sis-section__title {
  margin: 4px 0 0;
  font-size: 28px;
  font-weight: 800;
  line-height: 1.2;
  color: var(--sis-green);
}
.page-home .home-data__intro {
  margin: 12px 0 26px;
  max-width: 52ch;
  font-size: 15px;
  line-height: 1.7;
  color: var(--sis-carbon);
}
.page-home .home-data__tabs {
  padding: 20px;
  border-radius: 24px;
  background: var(--sis-rice);
}
.page-home .home-data__tabs .sis-tabs__list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
}
.page-home .home-data__tabs .sis-tabs__btn {
  border: 1px solid var(--sis-green);
  background: transparent;
  color: var(--sis-green);
  font-family: inherit;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.4;
  padding: 10px 16px;
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}
.page-home .home-data__tabs .sis-tabs__btn:hover {
  background: rgba(10, 61, 46, 0.08);
}
.page-home .home-data__tabs .sis-tabs__btn.is-active {
  background: var(--sis-green);
  color: var(--sis-cloud);
  box-shadow: 0 4px 14px rgba(10, 61, 46, 0.28);
}
.page-home .home-data__panel {
  display: grid;
  gap: 24px;
  align-items: center;
}
.page-home .home-data__text h3 {
  margin: 0 0 10px;
  font-size: 20px;
  font-weight: 700;
  color: var(--sis-carbon);
}
.page-home .home-data__text p {
  margin: 0 0 16px;
  font-size: 14px;
  line-height: 1.7;
  color: #444;
}
.page-home .home-data__link {
  color: var(--sis-gold-dark);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
}
.page-home .home-data__link:hover {
  text-decoration: underline;
}
.page-home .home-data__media {
  border-radius: 18px;
  overflow: hidden;
  background: var(--sis-green-deep);
}
.page-home .home-data__media img {
  display: block;
  width: 100%;
  height: auto;
}

/* 进失球分布面板的纯 CSS 视觉 */
.page-home .home-data__split {
  padding: 28px 22px;
  border-radius: 18px;
  background:
    radial-gradient(circle at 80% 15%, rgba(212, 175, 55, 0.18), transparent 55%),
    linear-gradient(135deg, #0A3D2E 0%, #062A20 100%);
  color: var(--sis-cloud);
}
.page-home .home-data__split-title {
  display: block;
  margin-bottom: 16px;
  font-family: var(--sis-mono);
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sis-gold);
}
.page-home .home-data__split-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.page-home .home-data__split-grid span {
  display: flex;
  align-items: center;
  min-height: 56px;
  padding: 12px 14px;
  border: 1px solid rgba(212, 175, 55, 0.24);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.05);
  font-size: 14px;
  line-height: 1.5;
  color: rgba(248, 249, 250, 0.9);
}

/* ===== 历史记录服务 ===== */
.page-home .home-history {
  padding: 56px 0;
  background: var(--sis-rice);
}
.page-home .home-history .sis-section__sub {
  color: var(--sis-gold-dark);
  font-family: var(--sis-mono);
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.page-home .home-history__grid {
  display: grid;
  align-items: center;
  gap: 32px;
}
.page-home .home-history__content .sis-section__title {
  margin: 4px 0 0;
  font-size: 28px;
  font-weight: 800;
  line-height: 1.2;
  color: var(--sis-green);
}
.page-home .home-history__content > p {
  margin: 14px 0 22px;
  max-width: 50ch;
  font-size: 15px;
  line-height: 1.7;
  color: var(--sis-carbon);
}
.page-home .home-history__list {
  list-style: none;
  margin: 0 0 24px;
  padding: 0;
  display: grid;
  gap: 14px;
}
.page-home .home-history__list li {
  display: flex;
  align-items: baseline;
  gap: 14px;
  padding: 14px 16px;
  border-radius: 14px;
  background: var(--sis-cloud);
  box-shadow: var(--home-shadow-soft);
  font-size: 14px;
  line-height: 1.6;
  color: var(--sis-carbon);
}
.page-home .home-history__list span {
  flex-shrink: 0;
  font-family: var(--sis-mono);
  font-size: 15px;
  font-weight: 700;
  color: var(--sis-gold-dark);
}
.page-home .home-history__visual {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(10, 61, 46, 0.16);
}
.page-home .home-history__visual img {
  display: block;
  width: 100%;
  height: auto;
}

/* ===== 下载与联系 ===== */
.page-home .home-cta {
  padding: 56px 0;
  background: linear-gradient(135deg, #062A20 0%, #0A3D2E 100%);
  color: var(--sis-cloud);
}
.page-home .home-cta .sis-section__sub {
  color: var(--sis-gold);
  font-family: var(--sis-mono);
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.page-home .home-cta__panel {
  position: relative;
  overflow: hidden;
  padding: 32px 24px;
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.04);
  text-align: center;
}
.page-home .home-cta__panel::before {
  content: "";
  position: absolute;
  top: -40px;
  right: -40px;
  width: 140px;
  height: 140px;
  border: 2px solid rgba(212, 175, 55, 0.2);
  border-radius: 50%;
}
.page-home .home-cta__panel .sis-section__title {
  margin: 4px 0 0;
  font-size: 28px;
  font-weight: 800;
  line-height: 1.2;
  color: var(--sis-cloud);
}
.page-home .home-cta__panel > div p {
  margin: 14px auto 0;
  max-width: 40ch;
  font-size: 15px;
  line-height: 1.7;
  color: rgba(248, 249, 250, 0.8);
}
.page-home .home-cta__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin: 24px 0;
}
.page-home .home-cta__note {
  margin: 0;
  font-size: 13px;
  line-height: 1.6;
  color: rgba(248, 249, 250, 0.6);
}

/* ===== 平板增强：768px ===== */
@media (min-width: 768px) {
  .page-home .home-hero__title {
    font-size: 42px;
  }
  .page-home .home-hero__visual {
    height: 380px;
  }
  .page-home .home-statbar__grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
  }
  .page-home .home-statbar__item .sis-data__num {
    font-size: 32px;
  }
  .page-home .home-archive__big-num {
    font-size: 76px;
  }
  .page-home .home-data__split-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* ===== 桌面增强：992px ===== */
@media (min-width: 992px) {
  .page-home .home-hero {
    padding: 56px 0 64px;
  }
  .page-home .home-hero__inner {
    grid-template-columns: 46fr 54fr;
    gap: 48px;
  }
  .page-home .home-hero__title {
    font-size: 48px;
  }
  .page-home .home-hero__lead {
    font-size: 17px;
  }
  .page-home .home-hero__visual {
    height: 440px;
  }
  .page-home .home-archive,
  .page-home .home-mobile,
  .page-home .home-data,
  .page-home .home-history,
  .page-home .home-cta {
    padding: 72px 0;
  }
  .page-home .home-archive__head {
    grid-template-columns: 1fr 1fr;
    align-items: end;
    margin-bottom: 40px;
  }
  .page-home .home-archive__head .sis-section__title,
  .page-home .home-mobile__content .sis-section__title,
  .page-home .home-data__head .sis-section__title,
  .page-home .home-history__content .sis-section__title,
  .page-home .home-cta__panel .sis-section__title {
    font-size: 36px;
  }
  .page-home .home-archive__grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
  .page-home .home-archive__feature {
    padding: 40px 36px;
  }
  .page-home .home-archive__big-num {
    font-size: 88px;
  }
  .page-home .home-mobile__grid,
  .page-home .home-history__grid {
    grid-template-columns: 1fr 1fr;
    gap: 48px;
  }
  .page-home .home-mobile__visual {
    order: 1;
  }
  .page-home .home-mobile__content {
    order: 2;
  }
  .page-home .home-data__tabs {
    padding: 32px;
  }
  .page-home .home-data__panel {
    grid-template-columns: 42fr 58fr;
    gap: 32px;
  }
  .page-home .home-cta__panel {
    padding: 48px;
  }
}
