.page-home {
  background: var(--c-off-white);
  overflow-x: hidden;
}

/* ===== 首屏封面 ===== */
.page-home .home-hero {
  position: relative;
  min-height: 100vh;
  padding: 130px 0 120px;
  background: var(--gradient-flow);
  color: var(--c-off-white);
  display: flex;
  align-items: center;
  overflow: hidden;
}
.page-home .home-hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.page-home .home-hero__bg-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.page-home .home-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(108deg, rgba(10,31,68,0.94) 0%, rgba(30,58,138,0.82) 45%, rgba(17,24,39,0.58) 100%);
}
.page-home .home-hero__dots {
  position: absolute;
  top: 14%;
  right: -70px;
  width: 440px;
  height: 440px;
  background-image: radial-gradient(var(--c-neon) 1.6px, transparent 1.6px);
  background-size: 26px 26px;
  opacity: 0.32;
  z-index: 1;
  pointer-events: none;
}
.page-home .home-hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 88px;
  background: var(--c-off-white);
  clip-path: polygon(0 100%, 100% 0, 100% 100%);
  z-index: 2;
}
.page-home .home-hero__container {
  position: relative;
  z-index: 3;
  display: grid;
  gap: 40px;
  min-width: 0;
}
.page-home .home-hero__breadcrumb {
  grid-column: 1 / -1;
}
.page-home .home-hero__breadcrumb .breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 13px;
}
.page-home .home-hero__breadcrumb .breadcrumb__item {
  color: rgba(245,247,250,0.65);
}
.page-home .home-hero__breadcrumb .breadcrumb__item + .breadcrumb__item::before {
  content: "/";
  margin-right: 8px;
  color: rgba(245,247,250,0.35);
}
.page-home .home-hero__breadcrumb .breadcrumb__link {
  color: rgba(245,247,250,0.78);
  text-decoration: none;
}
.page-home .home-hero__breadcrumb .breadcrumb__link:hover {
  color: var(--c-neon);
}
.page-home .home-hero__kicker {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 16px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-neon);
}
.page-home .home-hero__kicker::before {
  content: "";
  width: 38px;
  height: 4px;
  background: var(--c-orange);
  transform: skewX(-20deg);
}
.page-home .home-hero__title {
  margin: 0 0 20px;
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: #fff;
}
.page-home .home-hero__title-main {
  display: block;
}
.page-home .home-hero__lead {
  max-width: 560px;
  margin: 0 0 30px;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.75;
  color: rgba(245,247,250,0.84);
}
.page-home .home-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 22px;
}
.page-home .home-hero__btn {
  min-height: 48px;
  padding: 12px 26px;
  font-weight: 700;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease, color 0.3s ease;
}
.page-home .home-hero__btn:hover {
  transform: translateY(-2px) scale(1.02);
}
.page-home .home-hero .btn--ghost {
  border-color: rgba(245,247,250,0.55);
  color: #fff;
}
.page-home .home-hero .btn--ghost:hover {
  border-color: var(--c-neon);
  color: var(--c-neon);
}
.page-home .home-hero__about-link {
  display: inline-block;
  color: rgba(245,247,250,0.72);
  font-size: 14px;
  text-decoration: underline;
  text-underline-offset: 4px;
  transition: color 0.3s ease;
}
.page-home .home-hero__about-link:hover {
  color: var(--c-neon);
}
.page-home .home-hero__stats-card {
  background: rgba(17,24,39,0.52);
  border: 1px solid rgba(255,255,255,0.14);
  padding: 26px 24px 22px;
  clip-path: polygon(0 0, calc(100% - 26px) 0, 100% 26px, 100% 100%, 26px 100%, 0 calc(100% - 26px));
  filter: drop-shadow(0 18px 40px rgba(0,0,0,0.22));
}
.page-home .home-hero__stats-label {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 14px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--c-neon);
}
.page-home .home-hero__stats-list {
  list-style: none;
  margin: 0 0 14px;
  padding: 0;
  border-top: 1px solid rgba(255,255,255,0.12);
}
.page-home .home-hero__stats-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 13px 0;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.page-home .home-hero__stats-name {
  font-size: 14px;
  color: rgba(245,247,250,0.75);
}
.page-home .home-hero__stats-value {
  font-family: var(--font-data);
  font-size: 30px;
  font-weight: 700;
  color: var(--c-orange);
  line-height: 1;
}
.page-home .home-hero__stats-foot {
  margin: 0;
  font-size: 12px;
  line-height: 1.65;
  color: rgba(245,247,250,0.52);
}
.page-home .home-hero__scroll-hint {
  position: absolute;
  bottom: 96px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(245,247,250,0.62);
  font-size: 13px;
  text-decoration: none;
  letter-spacing: 0.06em;
}
.page-home .home-hero__scroll-hint svg {
  animation: page-home-bounce 2.2s ease-in-out infinite;
}
@keyframes page-home-bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(6px); }
}

/* ===== 射门统计榜单 ===== */
.page-home .home-shots {
  background: var(--c-off-white);
  padding: 96px 0 88px;
}
.page-home .home-shots__heading {
  margin-bottom: 44px;
}
.page-home .home-shots__grid {
  display: grid;
  gap: 44px;
}
.page-home .home-shots__table-wrap {
  overflow-x: auto;
  box-shadow: 0 12px 36px rgba(10,31,68,0.08);
}
.page-home .home-shots__table {
  width: 100%;
  min-width: 560px;
  border-collapse: collapse;
  background: #fff;
  font-size: 15px;
}
.page-home .home-shots__table caption {
  padding: 14px 16px;
  text-align: left;
  font-family: var(--font-data);
  font-size: 13px;
  font-weight: 700;
  color: var(--c-navy);
  background: #fff;
  border-bottom: 1px solid var(--c-light-gray);
}
.page-home .home-shots__table th,
.page-home .home-shots__table td {
  padding: 14px 16px;
  text-align: left;
  border-bottom: 1px solid var(--c-light-gray);
  white-space: nowrap;
}
.page-home .home-shots__table thead th {
  background: var(--c-navy);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.page-home .home-shots__table tbody tr {
  transition: background 0.25s ease;
}
.page-home .home-shots__table tbody tr:hover {
  background: rgba(255,122,0,0.06);
}
.page-home .home-shots__table tbody tr:first-child td:first-child {
  border-left: 4px solid var(--c-neon);
}
.page-home .home-shots__table .home-shots__num {
  font-family: var(--font-data);
  text-align: right;
  font-weight: 600;
}
.page-home .home-shots__rank {
  font-family: var(--font-data);
  font-weight: 700;
  color: var(--c-gray);
}
.page-home .home-shots__rate {
  color: var(--c-orange);
  font-weight: 700;
}
.page-home .home-shots__zone {
  margin-top: 20px;
  padding: 20px 22px;
  background: #fff;
  border: 1px solid var(--c-light-gray);
  box-shadow: 0 8px 24px rgba(10,31,68,0.05);
}
.page-home .home-shots__zone-title {
  margin: 0 0 12px;
  font-size: 13px;
  font-weight: 700;
  color: var(--c-navy);
  letter-spacing: 0.04em;
}
.page-home .home-shots__zone-bar {
  display: flex;
  height: 14px;
  background: var(--c-light-gray);
  border-radius: 2px;
  overflow: hidden;
}
.page-home .home-shots__zone-in {
  width: 76.3%;
  background: var(--c-navy);
}
.page-home .home-shots__zone-out {
  width: 23.7%;
  background: var(--c-orange);
}
.page-home .home-shots__zone-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 12px;
  font-family: var(--font-data);
  font-size: 13px;
  color: var(--c-navy);
}
.page-home .home-shots__zone-key {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.page-home .home-shots__zone-dot {
  display: inline-block;
  width: 10px;
  height: 10px;
}
.page-home .home-shots__zone-dot--in {
  background: var(--c-navy);
}
.page-home .home-shots__zone-dot--out {
  background: var(--c-orange);
}
.page-home .home-shots__foot-note {
  margin: 16px 0 0;
  font-size: 12px;
  line-height: 1.7;
  color: var(--c-gray);
}
.page-home .home-shots__figure {
  margin: 0;
  box-shadow: 0 18px 44px rgba(10,31,68,0.12);
}
.page-home .home-shots__img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.page-home .home-shots__figure-cap {
  padding: 12px 16px;
  background: #fff;
  border-left: 4px solid var(--c-orange);
  font-size: 13px;
  color: var(--c-navy);
}

/* ===== 赛事轮次导航 ===== */
.page-home .home-rounds {
  position: relative;
  padding: 100px 0 96px;
  background: var(--c-navy);
  color: var(--c-off-white);
  overflow: hidden;
}
.page-home .home-rounds::before {
  content: "";
  position: absolute;
  top: -70px;
  right: -80px;
  width: 460px;
  height: 460px;
  background-image: radial-gradient(var(--c-neon) 1.6px, transparent 1.6px);
  background-size: 26px 26px;
  opacity: 0.13;
  pointer-events: none;
}
.page-home .home-rounds::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--c-neon) 0%, var(--c-orange) 55%, transparent 100%);
}
.page-home .home-rounds__heading {
  position: relative;
  z-index: 1;
  margin-bottom: 40px;
}
.page-home .home-rounds__heading .section-heading__eyebrow {
  color: var(--c-neon);
}
.page-home .home-rounds__heading .section-heading__title {
  color: #fff;
}
.page-home .home-rounds__heading .section-heading__desc {
  color: rgba(245,247,250,0.74);
}
.page-home .home-rounds__grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 16px;
  margin: 0 0 38px;
}
.page-home .home-rounds__card {
  display: block;
  padding: 22px 20px 18px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  text-decoration: none;
  color: var(--c-off-white);
  clip-path: polygon(0 0, calc(100% - 14px) 0, 100% 14px, 100% 100%, 14px 100%, 0 calc(100% - 14px));
  transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}
.page-home .home-rounds__card:hover {
  background: rgba(255,255,255,0.09);
  border-color: var(--c-neon);
  transform: translateY(-3px);
}
.page-home .home-rounds__card-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}
.page-home .home-rounds__league {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 900;
}
.page-home .home-rounds__status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--c-neon);
}
.page-home .home-rounds__round {
  margin-bottom: 10px;
  font-family: var(--font-data);
  font-size: 26px;
  font-weight: 700;
  color: var(--c-orange);
}
.page-home .home-rounds__meta {
  padding-top: 10px;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 12px;
  color: rgba(245,247,250,0.62);
  line-height: 1.5;
}
.page-home .home-rounds__more {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 24px;
}
.page-home .home-rounds .btn--light {
  border-color: rgba(255,255,255,0.45);
  color: #fff;
}
.page-home .home-rounds .btn--light:hover {
  border-color: var(--c-neon);
  color: var(--c-neon);
}
.page-home .home-rounds__about {
  color: rgba(245,247,250,0.72);
  font-size: 14px;
  text-decoration: underline;
  text-underline-offset: 4px;
}
.page-home .home-rounds__about:hover {
  color: var(--c-neon);
}

/* ===== 平板适配 ===== */
.page-home .home-tablet {
  background: var(--c-off-white);
  padding: 100px 0 96px;
}
.page-home .home-tablet__grid {
  display: grid;
  gap: 48px;
}
.page-home .home-tablet__title {
  margin: 0 0 16px;
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 900;
  line-height: 1.15;
  color: var(--c-navy);
}
.page-home .home-tablet__lead {
  margin: 0 0 20px;
  font-size: 16px;
  line-height: 1.75;
  color: var(--c-navy);
}
.page-home .home-tablet__steps {
  list-style: none;
  margin: 0 0 30px;
  padding: 0;
}
.page-home .home-tablet__steps li {
  display: flex;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--c-light-gray);
}
.page-home .home-tablet__step-num {
  flex: 0 0 auto;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--c-navy);
  color: var(--c-neon);
  font-family: var(--font-data);
  font-size: 14px;
  font-weight: 700;
  transform: skewX(-10deg);
}
.page-home .home-tablet__step-body strong {
  display: block;
  margin-bottom: 4px;
  font-size: 16px;
  color: var(--c-navy);
}
.page-home .home-tablet__step-body p {
  margin: 0;
  font-size: 14px;
  line-height: 1.65;
  color: var(--c-gray);
}
.page-home .home-tablet__btn {
  min-height: 48px;
  padding: 12px 24px;
}
.page-home .home-tablet__btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(10,31,68,0.12);
}
.page-home .home-tablet__figure {
  margin: 0;
  position: relative;
  overflow: hidden;
  box-shadow: 0 24px 56px rgba(10,31,68,0.16);
}
.page-home .home-tablet__img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.page-home .home-tablet__figure figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 22px 18px 14px;
  background: linear-gradient(transparent, rgba(10,31,68,0.75));
  color: #fff;
  font-size: 13px;
  line-height: 1.5;
}

/* ===== 旧版对比 ===== */
.page-home .home-compare {
  position: relative;
  padding: 104px 0 100px;
  background: var(--c-dark);
  color: var(--c-off-white);
  overflow: hidden;
}
.page-home .home-compare::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--c-neon) 0%, var(--c-orange) 48%, transparent 100%);
}
.page-home .home-compare__grid {
  display: grid;
  gap: 44px;
}
.page-home .home-compare__title {
  margin: 0 0 16px;
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 900;
  line-height: 1.15;
  color: #fff;
}
.page-home .home-compare__lead {
  margin: 0 0 12px;
  font-size: 16px;
  line-height: 1.75;
  color: rgba(245,247,250,0.82);
}
.page-home .home-compare__list {
  list-style: none;
  margin: 20px 0 30px;
  padding: 0;
}
.page-home .home-compare__list li {
  position: relative;
  margin-bottom: 12px;
  padding-left: 26px;
  font-size: 15px;
  line-height: 1.65;
  color: rgba(245,247,250,0.86);
}
.page-home .home-compare__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 12px;
  height: 4px;
  background: var(--c-orange);
  transform: skewX(-20deg);
}
.page-home .home-compare__figure {
  margin: 0;
  position: relative;
  border: 1px solid rgba(255,255,255,0.16);
  box-shadow: 0 20px 56px rgba(0,0,0,0.3);
}
.page-home .home-compare__img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 2;
  object-fit: cover;
}
.page-home .home-compare__figcap {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 6px 12px;
  background: var(--c-navy);
  color: var(--c-neon);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
}
.page-home .home-compare__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
.page-home .home-compare .btn--light {
  border-color: rgba(255,255,255,0.4);
  color: #fff;
}
.page-home .home-compare .btn--light:hover {
  border-color: var(--c-neon);
  color: var(--c-neon);
}
.page-home .home-compare__btn-primary {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.page-home .home-compare__btn-primary:hover {
  transform: translateY(-2px) scale(1.02);
}

/* ===== 响应式布局 ===== */
@media (max-width: 767px) {
  .page-home .home-hero {
    min-height: auto;
    padding: 116px 0 96px;
  }
  .page-home .home-hero::after {
    height: 52px;
  }
  .page-home .home-hero__scroll-hint {
    display: none;
  }
}
@media (min-width: 640px) {
  .page-home .home-rounds__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 768px) {
  .page-home .home-hero__container {
    grid-template-columns: minmax(0, 1.35fr) minmax(320px, 0.65fr);
    gap: 56px;
    align-items: center;
  }
  .page-home .home-shots__grid {
    grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
    gap: 48px;
    align-items: start;
  }
  .page-home .home-tablet__grid {
    grid-template-columns: 0.9fr 1.1fr;
    gap: 56px;
    align-items: center;
  }
  .page-home .home-compare__grid {
    grid-template-columns: 0.8fr 1.2fr;
    gap: 60px;
    align-items: center;
  }
}
@media (min-width: 1024px) {
  .page-home .home-rounds__grid {
    grid-template-columns: repeat(4, 1fr);
  }
  .page-home .home-hero__title {
    font-size: clamp(2.6rem, 4.6vw, 4.2rem);
  }
}
