/* ===== 首页 Home 页专属样式 ===== */
.page-home {
  --home-tilt: -4deg;
  --home-card-border: 2px;
  --home-accent-line: 4px;
  background: var(--c-snow);
  color: var(--c-ink);
  font-family: var(--font-body);
  line-height: 1.7;
  overflow-x: clip;
}
.page-home .container {
  width: min(var(--container), 1180px);
  margin-inline: auto;
  padding-inline: 20px;
  box-sizing: border-box;
}
.page-home .section__head {
  max-width: 780px;
  margin-bottom: 30px;
}
.page-home .section__kicker {
  margin: 0 0 6px;
  font-family: var(--font-tech);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--c-orange);
}
.page-home .section__title {
  margin: 0 0 12px;
  font-size: clamp(28px, 4.6vw, 48px);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -.02em;
  color: var(--c-deep);
  transform: skewX(var(--home-tilt));
  text-shadow: 3px 3px 0 rgba(15, 42, 67, .06);
}
.page-home .section__lead {
  margin: 0;
  font-size: 16px;
  line-height: 1.75;
  color: var(--c-muted);
}
.page-home .card {
  border: var(--home-card-border) solid var(--c-border);
  box-shadow: var(--shadow-1);
  position: relative;
  padding: 26px 22px 24px;
  background: var(--c-snow);
}
.page-home .card--blue {
  background: linear-gradient(140deg, rgba(27, 91, 138, .12), rgba(247, 250, 252, .9) 60%), var(--c-snow);
  border-color: var(--c-blue);
}
.page-home .card--paper {
  background: var(--c-paper);
  border-color: var(--c-sand);
}
.page-home .card__path {
  position: absolute;
  top: 14px;
  right: 16px;
  font-family: var(--font-tech);
  font-size: 13px;
  font-weight: 700;
  color: var(--c-border);
  letter-spacing: .06em;
}
.page-home .card__title {
  margin: 0 0 10px;
  font-size: 20px;
  font-weight: 800;
  color: var(--c-deep);
  transform: skewX(var(--home-tilt));
}
.page-home .card__text {
  margin: 0;
  font-size: 15px;
  line-height: 1.7;
  color: var(--c-ink);
}
.page-home .button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  padding: 0 20px;
  border: 2px solid var(--c-deep);
  background: var(--c-snow);
  color: var(--c-deep);
  font-weight: 700;
  font-size: 15px;
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
}
.page-home .button--skew {
  transform: skewX(var(--home-tilt));
}
.page-home .button--primary {
  background: var(--c-orange);
  border-color: var(--c-orange-deep);
  color: var(--c-snow);
  box-shadow: 4px 4px 0 var(--c-orange-deep);
}
.page-home .button:hover {
  filter: brightness(1.05);
  box-shadow: 6px 6px 0 rgba(15, 42, 67, .18);
}

/* ===== 首屏：赛讯一览窗 ===== */
.page-home .home-hero {
  position: relative;
  background: var(--c-deep);
}
.page-home .home-hero__frame {
  position: relative;
  max-width: 1440px;
  margin-inline: auto;
  background:
    radial-gradient(circle at 82% 18%, rgba(232, 105, 47, .42), transparent 30%),
    linear-gradient(118deg, var(--c-deep) 0%, var(--c-blue) 62%, rgba(27, 91, 138, .96) 100%);
  color: var(--c-snow);
  overflow: hidden;
  isolation: isolate;
}
.page-home .home-hero__topline {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  padding: 12px 20px;
  border-bottom: 1px solid rgba(247, 250, 252, .3);
  font-family: var(--font-tech);
  font-size: 12px;
  letter-spacing: .12em;
  color: rgba(247, 250, 252, .86);
  white-space: nowrap;
}
.page-home .home-hero__inner {
  position: relative;
  display: grid;
  gap: 0;
  max-width: 1180px;
  margin-inline: auto;
  padding: 44px 20px 52px;
  z-index: 2;
}
.page-home .home-hero__copy {
  position: relative;
  z-index: 2;
  max-width: 680px;
}
.page-home .home-hero__kicker {
  margin: 0 0 14px;
  font-family: var(--font-tech);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .12em;
  color: var(--c-sand);
}
.page-home .home-hero__title {
  margin: 0;
  font-size: clamp(34px, 9vw, 84px);
  font-weight: 900;
  line-height: 1.04;
  letter-spacing: -.03em;
  color: var(--c-snow);
  transform: skewX(var(--home-tilt));
  text-transform: uppercase;
  text-shadow: 4px 5px 0 rgba(232, 105, 47, .55);
}
.page-home .home-hero__brand {
  display: block;
}
.page-home .home-hero__divider {
  display: none;
}
.page-home .home-hero__sub {
  display: block;
  font-size: .58em;
  letter-spacing: .08em;
  color: var(--c-snow);
  text-shadow: 3px 3px 0 var(--c-orange-deep);
  margin-top: 6px;
}
.page-home .home-hero__lead {
  margin: 22px 0 0;
  max-width: 34em;
  font-size: 16px;
  line-height: 1.8;
  color: rgba(247, 250, 252, .9);
}
.page-home .home-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 28px;
}
.page-home .home-hero__actions .button--skew {
  border-color: rgba(247, 250, 252, .5);
}
.page-home .home-hero__actions .button--primary {
  border-color: var(--c-orange-deep);
}
.page-home .home-hero__visual {
  position: absolute;
  inset: auto 0 0 auto;
  width: 100%;
  height: 250px;
  margin: 0;
  z-index: 1;
  clip-path: polygon(14% 0, 100% 38%, 100% 100%, 0 100%);
  opacity: .4;
}
.page-home .home-hero__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.page-home .home-hero__index {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  background: rgba(15, 42, 67, .58);
  border-top: 1px solid rgba(247, 250, 252, .28);
}
.page-home .home-hero__index-item {
  display: flex;
  align-items: baseline;
  gap: 8px;
  padding: 16px 20px;
  text-decoration: none;
  font-weight: 700;
  font-size: 15px;
  color: var(--c-snow);
  border-top: 1px solid rgba(247, 250, 252, .12);
  transition: background var(--dur) ease;
}
.page-home .home-hero__index-item:hover {
  background: rgba(232, 105, 47, .32);
}
.page-home .home-hero__index-num {
  font-family: var(--font-tech);
  font-size: 12px;
  font-weight: 700;
  color: var(--c-orange);
}
.page-home .home-hero::after {
  content: "";
  position: absolute;
  left: -6%;
  right: -6%;
  bottom: 34px;
  height: 12px;
  background: linear-gradient(90deg, var(--c-orange) 0%, var(--c-orange-deep) 42%, rgba(232, 105, 47, 0) 80%);
  transform: skewX(-8deg);
  pointer-events: none;
  z-index: 4;
}

/* ===== 赛程票价 ===== */
.page-home .home-ticket {
  padding: 64px 0 48px;
  background: var(--c-paper);
}
.page-home .home-ticket__grid {
  display: grid;
  gap: 22px;
}
.page-home .home-ticket__list {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
}
.page-home .home-ticket__list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 14px;
  color: var(--c-ink);
}
.page-home .home-ticket__list li::before {
  content: "—";
  font-family: var(--font-tech);
  color: var(--c-orange);
  flex: 0 0 auto;
}
.page-home .home-ticket__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}
.page-home .home-ticket__fig {
  margin: 0;
  border: 2px solid var(--c-grayblue);
  background: var(--c-snow);
  box-shadow: var(--shadow-2);
}
.page-home .home-ticket__fig img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

/* ===== 积分榜 ===== */
.page-home .home-standings {
  padding: 64px 0 56px;
  background:
    linear-gradient(118deg, rgba(15, 42, 67, .95), rgba(27, 91, 138, .94) 64%, rgba(232, 105, 47, .38)),
    var(--c-blue);
  color: var(--c-snow);
}
.page-home .home-standings .section__title {
  color: var(--c-snow);
  text-shadow: 3px 3px 0 rgba(15, 42, 67, .5);
}
.page-home .home-standings .section__lead {
  color: rgba(247, 250, 252, .8);
}
.page-home .home-standings__tabs {
  margin-bottom: 24px;
  background: rgba(15, 42, 67, .4);
  border: 1px solid rgba(247, 250, 252, .18);
}
.page-home .home-standings__tabbar {
  display: flex;
  flex-wrap: wrap;
  border-bottom: 1px solid rgba(247, 250, 252, .18);
}
.page-home .home-standings__tab {
  appearance: none;
  border: 0;
  border-right: 1px solid rgba(247, 250, 252, .14);
  background: transparent;
  color: rgba(247, 250, 252, .72);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 700;
  padding: 14px 22px;
  cursor: pointer;
  transition: background var(--dur) ease, color var(--dur) ease;
}
.page-home .home-standings__tab[aria-selected="true"] {
  background: rgba(232, 105, 47, .28);
  color: var(--c-snow);
}
.page-home .home-standings__tab:hover {
  background: rgba(247, 250, 252, .12);
}
.page-home .tab-panel {
  display: block;
}
.page-home .tab-panel[hidden] {
  display: none;
}
.page-home .home-standings__strip {
  display: grid;
  gap: 12px;
  padding: 18px;
}
.page-home .home-standings .score-strip__item {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(80px, 1.8fr) 72px;
  gap: 12px;
  align-items: center;
  background: rgba(247, 250, 252, .06);
  border: 1px solid rgba(247, 250, 252, .12);
  padding: 10px 14px;
}
.page-home .home-standings .score-strip__name {
  font-size: 14px;
  font-weight: 700;
  color: var(--c-snow);
}
.page-home .home-standings .score-strip__bar {
  display: block;
  height: 10px;
  width: 100%;
  background: linear-gradient(90deg, var(--c-orange), var(--c-orange-deep));
  transform: skewX(var(--home-tilt));
  box-shadow: 0 0 0 1px rgba(255, 255, 255, .28);
}
.page-home .home-standings .score-strip__value {
  font-family: var(--font-tech);
  font-size: 13px;
  text-align: right;
  color: var(--c-sand);
  white-space: nowrap;
}
.page-home .home-standings__grid {
  display: grid;
  gap: 22px;
  margin-top: 26px;
}
.page-home .home-standings__fee {
  position: relative;
  background: var(--c-snow);
  color: var(--c-ink);
  border: 1px solid rgba(247, 250, 252, .8);
  box-shadow: var(--shadow-2);
  padding: 26px 24px 24px;
}
.page-home .home-standings__fee::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: var(--c-orange);
}
.page-home .home-standings__fee-title {
  margin: 0 0 16px;
  font-size: 19px;
  font-weight: 800;
  color: var(--c-deep);
  transform: skewX(var(--home-tilt));
}
.page-home .home-standings__fee-list {
  margin: 0 0 20px;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}
.page-home .home-standings__fee-list li {
  position: relative;
  padding-left: 20px;
  font-size: 15px;
  line-height: 1.7;
  color: var(--c-ink);
}
.page-home .home-standings__fee-list li::before {
  content: "▪";
  position: absolute;
  left: 0;
  top: 0;
  font-size: 12px;
  color: var(--c-orange);
}
.page-home .home-standings__fee-list strong {
  color: var(--c-orange-deep);
}
.page-home .home-standings__fig {
  margin: 0;
  border: 2px solid var(--c-grayblue);
  background: var(--c-snow);
  box-shadow: var(--shadow-2);
}
.page-home .home-standings__fig img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

/* ===== 移动端导航入口 ===== */
.page-home .home-mobile {
  padding: 64px 0 56px;
  background: var(--c-snow);
}
.page-home .home-mobile__container {
  display: grid;
  gap: 28px;
  align-items: center;
}
.page-home .home-mobile__feature {
  margin: 24px 0;
  padding: 0 0 0 4px;
  list-style: none;
  display: grid;
  gap: 12px;
}
.page-home .home-mobile__feature li {
  position: relative;
  padding-left: 26px;
  font-size: 16px;
  line-height: 1.6;
  color: var(--c-ink);
}
.page-home .home-mobile__feature li::before {
  content: "→";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--c-orange);
  font-family: var(--font-tech);
  font-weight: 700;
}
.page-home .home-mobile__note {
  margin: 18px 0 26px;
  font-family: var(--font-tech);
  font-size: 13px;
  line-height: 1.7;
  color: var(--c-muted);
}
.page-home .home-mobile__fig {
  max-width: 320px;
  margin: 0 auto;
  padding: 12px;
  border: 2px solid var(--c-deep);
  border-radius: 18px;
  background: var(--c-deep);
  box-shadow: 8px 8px 0 rgba(15, 42, 67, .16);
}
.page-home .home-mobile__fig img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 12px;
  max-height: 560px;
  object-fit: cover;
}

/* ===== 工具目录对照 ===== */
.page-home .home-toolmap {
  padding: 64px 0 60px;
  background: var(--c-paper);
}
.page-home .home-toolmap__list {
  display: grid;
  gap: 16px;
}
.page-home .home-toolmap__item {
  border: 2px solid var(--c-border);
  background: var(--c-snow);
  box-shadow: var(--shadow-1);
}
.page-home .home-toolmap__btn {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  padding: 18px 20px;
  border: 0;
  background: transparent;
  font-family: var(--font-body);
  text-align: left;
  cursor: pointer;
}
.page-home .home-toolmap__btn:hover {
  background: rgba(232, 105, 47, .08);
}
.page-home .home-toolmap__label {
  font-size: 17px;
  font-weight: 800;
  color: var(--c-deep);
}
.page-home .home-toolmap__tag {
  margin-left: auto;
  font-family: var(--font-tech);
  font-size: 12px;
  color: var(--c-muted);
  white-space: nowrap;
}
.page-home .home-toolmap__panel {
  padding: 0 20px 20px 58px;
  font-size: 15px;
  line-height: 1.7;
  color: var(--c-ink);
}
.page-home .home-toolmap__panel p {
  margin: 0 0 12px;
}
.page-home .home-toolmap__panel a {
  color: var(--c-orange-deep);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 4px;
}
.page-home .home-toolmap .tool-map__num {
  font-family: var(--font-tech);
  font-size: 13px;
  font-weight: 700;
  color: var(--c-orange);
}

/* ===== 赛季数据快报 ===== */
.page-home .home-data {
  padding: 64px 0 60px;
  background:
    radial-gradient(circle at 84% 16%, rgba(232, 105, 47, .3), transparent 34%),
    var(--c-deep);
  color: var(--c-snow);
}
.page-home .home-data .section__title {
  color: var(--c-snow);
}
.page-home .home-data .section__lead {
  color: rgba(247, 250, 252, .76);
}
.page-home .home-data__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin: 28px 0 36px;
}
.page-home .home-data__stat {
  background: rgba(247, 250, 252, .06);
  border: 1px solid rgba(247, 250, 252, .2);
  padding: 28px 18px 24px;
  transform: skewX(-2deg);
}
.page-home .home-data__num {
  display: block;
  font-family: var(--font-tech);
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 900;
  line-height: 1;
  color: var(--c-orange);
}
.page-home .home-data__label {
  display: block;
  margin-top: 10px;
  font-size: 14px;
  color: rgba(247, 250, 252, .78);
}
.page-home .home-data__note {
  border-top: 1px solid rgba(247, 250, 252, .22);
  padding-top: 28px;
  display: grid;
  gap: 18px;
}
.page-home .home-data__note p {
  margin: 0;
  font-size: 15px;
  line-height: 1.75;
  color: rgba(247, 250, 252, .86);
}
.page-home .home-data__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.page-home .home-data__cta .button {
  border-color: rgba(247, 250, 252, .5);
  color: var(--c-snow);
  background: transparent;
}
.page-home .home-data__cta .button--primary {
  background: var(--c-orange);
  border-color: var(--c-orange-deep);
  color: var(--c-snow);
}

/* ===== 桌面与中等屏适配 ===== */
@media (min-width: 700px) {
  .page-home .home-hero__copy {
    max-width: 720px;
  }
  .page-home .home-hero__visual {
    inset: 0 0 auto auto;
    width: 54%;
    height: 68%;
    opacity: .55;
    clip-path: polygon(12% 0, 100% 0, 100% 82%, 0 100%);
  }
  .page-home .home-hero__index {
    grid-template-columns: repeat(4, 1fr);
  }
  .page-home .home-hero__index-item {
    justify-content: flex-start;
    border-top: 0;
    border-left: 1px solid rgba(247, 250, 252, .12);
  }
  .page-home .home-ticket__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .page-home .home-ticket__fig {
    grid-column: span 2;
  }
  .page-home .home-standings__grid {
    grid-template-columns: 1.1fr .9fr;
    align-items: stretch;
  }
  .page-home .home-mobile__container {
    grid-template-columns: minmax(0, 1.1fr) minmax(280px, .9fr);
  }
  .page-home .home-mobile__fig {
    margin: 0 auto;
  }
  .page-home .home-data__grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
  }
}

@media (min-width: 1024px) {
  .page-home .home-hero__inner {
    min-height: 600px;
    align-items: center;
    padding-block: 70px;
  }
  .page-home .home-hero__copy {
    max-width: 720px;
  }
  .page-home .home-hero__lead {
    font-size: 17px;
  }
  .page-home .home-hero__visual {
    width: 46%;
    height: 88%;
    opacity: .62;
  }
  .page-home .home-hero__topline {
    padding-inline: 34px;
  }
  .page-home .home-hero__index-item {
    padding: 20px 26px;
    font-size: 16px;
  }
  .page-home .home-ticket__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: center;
  }
  .page-home .home-ticket__fig {
    grid-column: auto;
    margin: 0;
  }
  .page-home .home-standings__strip {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    padding: 22px;
  }
  .page-home .home-standings .score-strip__item {
    grid-template-columns: minmax(0, 1.4fr) minmax(90px, 1fr) 72px;
  }
  .page-home .home-standings__tabs {
    margin-bottom: 0;
  }
  .page-home .home-standings__grid {
    margin-top: 26px;
  }
  .page-home .home-toolmap__list {
    grid-template-columns: repeat(2, 1fr);
    align-items: start;
  }
  .page-home .home-data__note {
    grid-template-columns: 1fr auto;
    align-items: center;
  }
}
