/* ============ 赛场总览 / page-home ============ */
.page-home {
  --home-pad: 56px;
  --home-line: rgba(216, 227, 244, .18);
  --home-ink-muted: rgba(28, 23, 18, .72);
  background: var(--ink-deep);
  color: var(--ink-soft);
  overflow-x: hidden;
}

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

.page-home .mono {
  font-family: var(--font-mono);
  font-variant-numeric: tabular-nums;
}

/* ---------- 首屏 ---------- */
.page-home .home-open {
  position: relative;
  padding: calc(var(--header-h) + 32px) 0 0;
  background:
    radial-gradient(120% 88% at 88% 4%, rgba(255, 106, 19, .26) 0%, rgba(255, 106, 19, 0) 58%),
    linear-gradient(166deg, var(--ink-deep) 0%, var(--ink-mid) 84%);
  color: var(--ink-soft);
  overflow: hidden;
}

.page-home .home-open .crumbs {
  margin: 0 0 22px;
  font-size: 13px;
  letter-spacing: .12em;
  color: rgba(216, 227, 244, .7);
}

.page-home .home-open__inner {
  display: grid;
  gap: 36px;
  align-items: end;
}

.page-home .home-open__eyebrow {
  margin: 0 0 14px;
  font-size: 13px;
  letter-spacing: .12em;
  color: var(--orange);
}

.page-home .home-open h1 {
  margin: 0 0 18px;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(30px, 7.4vw, 58px);
  line-height: 1.08;
  letter-spacing: -.01em;
  color: var(--white);
  transform: skewX(-2deg);
  transform-origin: left bottom;
}

.page-home .home-open__lead {
  margin: 0 0 26px;
  max-width: 60ch;
  font-size: 16px;
  line-height: 1.78;
  color: var(--ink-soft);
}

.page-home .home-open__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.page-home .home-open__figure {
  position: relative;
  margin: 0;
}

.page-home .home-open__figure img {
  width: 100%;
  object-fit: cover;
}

.page-home .home-open__figure .media__caption {
  margin-top: 10px;
  font-size: 13px;
  line-height: 1.6;
  color: rgba(216, 227, 244, .72);
}

.page-home .home-open__bar {
  margin-top: 40px;
  border-top: 2px solid var(--orange);
  background: rgba(11, 31, 58, .78);
}

.page-home .home-open__bar-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4px;
  padding: 6px 0 10px;
}

.page-home .home-open__datum {
  padding: 16px 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.page-home .home-open__num {
  font-family: var(--font-mono);
  font-variant-numeric: tabular-nums;
  font-weight: 700;
  font-size: 32px;
  line-height: 1.05;
  color: var(--orange);
}

.page-home .home-open__label {
  font-size: 14px;
  line-height: 1.6;
  color: var(--ink-soft);
}

/* ---------- 斜切色带 ---------- */
.page-home .home-blade {
  height: 44px;
  background: var(--orange);
  clip-path: polygon(0 0, 100% 42%, 100% 100%, 0 58%);
  position: relative;
  z-index: 1;
}

.page-home .home-blade--light {
  background: var(--paper-line);
  clip-path: polygon(0 42%, 100% 0, 100% 58%, 0 100%);
}

/* ---------- 通用区块 ---------- */
.page-home .home-block {
  position: relative;
  padding: var(--home-pad) 0;
  scroll-margin-top: var(--header-h);
}

.page-home .home-block--dark { background: var(--ink-deep); color: var(--ink-soft); }
.page-home .home-block--mid  { background: var(--ink-mid);  color: var(--ink-soft); }
.page-home .home-block--cream{ background: var(--cream);    color: var(--ink); }

/* ---------- 章节题头 ---------- */
.page-home .home-chapter {
  margin-bottom: 32px;
  max-width: 62ch;
}

.page-home .home-chapter__num {
  display: block;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 46px;
  line-height: .82;
  letter-spacing: -.04em;
  font-variant-numeric: tabular-nums;
  color: var(--orange);
  transform: skewX(-5deg);
  transform-origin: left bottom;
}

.page-home .home-chapter__title {
  margin: 10px 0 12px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(24px, 5vw, 38px);
  line-height: 1.18;
  letter-spacing: -.01em;
  color: var(--white);
}

.page-home .home-block--cream .home-chapter__title { color: var(--ink); }

.page-home .home-chapter__claim {
  margin: 0;
  font-size: 16px;
  line-height: 1.75;
  max-width: 56ch;
  color: var(--ink-soft);
}

.page-home .home-block--cream .home-chapter__claim { color: var(--home-ink-muted); }

/* ---------- 主客场切换 ---------- */
.page-home .home-venue {
  margin-top: 8px;
}

.page-home .home-venue .segmented {
  display: inline-flex;
  gap: 6px;
  padding: 5px;
  margin-bottom: 26px;
  border-radius: 999px;
  background: rgba(11, 31, 58, .6);
  border: 1px solid var(--home-line);
}

.page-home .home-venue .segmented__btn {
  appearance: none;
  border: 0;
  cursor: pointer;
  padding: 9px 20px;
  border-radius: 999px;
  background: transparent;
  color: var(--ink-soft);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .04em;
  transition: background .2s ease, color .2s ease;
}

.page-home .home-venue .segmented__btn[aria-pressed="true"] {
  background: var(--orange);
  color: var(--white);
}

.page-home .home-venue .segmented__btn:hover { color: var(--white); }
.page-home .home-venue .segmented__btn[aria-pressed="true"]:hover { color: var(--white); }

.page-home .home-metrics {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.page-home .home-metric {
  position: relative;
  padding: 22px 20px 24px;
  border-radius: var(--radius-m);
  background: rgba(11, 31, 58, .72);
  border: 1px solid var(--home-line);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.page-home .home-metric:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
  border-color: rgba(255, 106, 19, .55);
}

.page-home .home-metric--accent {
  border-left: 4px solid var(--orange);
}

.page-home .home-metric--neon {
  border-left: 4px solid var(--neon);
}

.page-home .home-metric__label {
  margin: 12px 0 8px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 19px;
  line-height: 1.35;
  color: var(--white);
}

.page-home .home-metric__text {
  margin: 0;
  font-size: 15px;
  line-height: 1.72;
  color: var(--ink-soft);
}

.page-home .home-metric .tag {
  display: inline-block;
  font-size: 12px;
  letter-spacing: .1em;
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid var(--home-line);
  color: var(--ink-soft);
}

.page-home .home-metric .tag--orange { border-color: var(--orange); color: var(--orange); }
.page-home .home-metric .tag--neon { border-color: var(--neon); color: var(--neon); }

.page-home .home-venue__note {
  margin: 24px 0 18px;
  font-size: 15px;
  line-height: 1.75;
  color: var(--ink-soft);
  border-left: 3px solid var(--orange);
  padding-left: 16px;
}

/* ---------- 战报与青训 ---------- */
.page-home .home-report {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

.page-home .home-list {
  list-style: none;
  margin: 0 0 26px;
  padding: 0;
}

.page-home .home-list__item {
  padding: 20px 0;
  border-top: 1px solid var(--paper-line);
}

.page-home .home-list__item:first-child { border-top: 2px solid var(--orange); }

.page-home .home-list__item h3 {
  margin: 0 0 8px;
  font-family: var(--font-editorial);
  font-weight: 600;
  font-size: 19px;
  line-height: 1.4;
  color: var(--ink);
}

.page-home .home-list__item p {
  margin: 0;
  font-size: 15px;
  line-height: 1.75;
  color: var(--home-ink-muted);
  max-width: 62ch;
}

.page-home .home-report__figure {
  margin: 0;
}

.page-home .home-report__figure img {
  width: 100%;
  border-radius: var(--radius-m);
  box-shadow: var(--shadow-card);
  object-fit: cover;
}

.page-home .home-report__figure .media__caption {
  margin-top: 10px;
  font-size: 13px;
  line-height: 1.6;
  color: var(--home-ink-muted);
}

/* ---------- 专区索引 ---------- */
.page-home .home-index {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

.page-home .home-index__card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 26px 22px 24px;
  border-radius: var(--radius-m);
  background: rgba(20, 52, 92, .68);
  border: 1px solid var(--home-line);
  color: var(--ink-soft);
  text-decoration: none;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease;
}

.page-home .home-index__card:hover,
.page-home .home-index__card:focus-visible {
  transform: translateY(-4px);
  background: var(--ink-mid);
  border-color: var(--orange);
  box-shadow: var(--shadow-float);
}

.page-home .home-index__num {
  font-size: 30px;
  font-weight: 700;
  line-height: 1;
  color: var(--orange);
  letter-spacing: .06em;
}

.page-home .home-index__title {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 21px;
  line-height: 1.3;
  color: var(--white);
}

.page-home .home-index__text {
  margin: 0;
  font-size: 15px;
  line-height: 1.7;
  color: var(--ink-soft);
}

.page-home .home-index__link {
  margin-top: auto;
  padding-top: 8px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .04em;
  color: var(--neon);
}

/* ---------- 山东赛场 ---------- */
.page-home .home-local {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: start;
}

.page-home .home-local__text {
  margin: 0 0 22px;
  font-size: 16px;
  line-height: 1.8;
  color: var(--ink-soft);
  max-width: 60ch;
}

.page-home .home-local__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.page-home .home-local__side {
  display: grid;
  gap: 20px;
}

.page-home .home-pitch {
  width: 100%;
  height: auto;
  border-radius: var(--radius-m);
  background: rgba(11, 31, 58, .5);
  border: 1px solid var(--home-line);
  padding: 8px;
  box-sizing: border-box;
}

.page-home .home-local__figure {
  margin: 0;
}

.page-home .home-local__figure img {
  width: 100%;
  border-radius: var(--radius-m);
  object-fit: cover;
}

.page-home .home-local__figure .media__caption {
  margin-top: 10px;
  font-size: 13px;
  line-height: 1.6;
  color: rgba(216, 227, 244, .72);
}

/* ---------- 会员对比 ---------- */
.page-home .home-table-wrap {
  overflow-x: auto;
  border-radius: var(--radius-m);
  box-shadow: var(--shadow-card);
  background: var(--white);
  -webkit-overflow-scrolling: touch;
}

.page-home .home-table {
  width: 100%;
  min-width: 560px;
  border-collapse: collapse;
  font-size: 15px;
  color: var(--ink);
  background: var(--white);
}

.page-home .home-table thead th {
  padding: 18px 16px;
  text-align: left;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 14px;
  letter-spacing: .08em;
  color: var(--white);
  background: var(--ink-deep);
}

.page-home .home-table tbody th {
  padding: 15px 16px;
  text-align: left;
  font-weight: 600;
  font-size: 15px;
  color: var(--ink);
  background: var(--cream);
}

.page-home .home-table tbody td {
  padding: 15px 16px;
  border-top: 1px solid var(--paper-line);
  font-family: var(--font-mono);
  font-variant-numeric: tabular-nums;
  font-size: 14px;
  color: var(--ink);
}

.page-home .home-table tbody tr:nth-child(even) td {
  background: rgba(227, 217, 198, .28);
}

.page-home .home-member__foot {
  display: grid;
  gap: 18px;
  margin-top: 28px;
}

.page-home .home-member__text {
  margin: 0;
  font-size: 16px;
  line-height: 1.8;
  color: var(--home-ink-muted);
  max-width: 62ch;
}

/* ---------- 常见问题 ---------- */
.page-home .home-help {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

.page-home .home-help .accordion__item {
  border-bottom: 1px solid var(--home-line);
}

.page-home .home-help .accordion__trigger {
  width: 100%;
  appearance: none;
  border: 0;
  background: transparent;
  cursor: pointer;
  text-align: left;
  padding: 20px 34px 20px 0;
  position: relative;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 17px;
  line-height: 1.5;
  color: var(--white);
}

.page-home .home-help .accordion__trigger::after {
  content: "+";
  position: absolute;
  right: 4px;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-mono);
  font-size: 22px;
  line-height: 1;
  color: var(--orange);
}

.page-home .home-help .accordion__trigger[aria-expanded="true"]::after {
  content: "−";
  color: var(--neon);
}

.page-home .home-help .accordion__panel {
  padding: 0 0 22px;
}

.page-home .home-help .accordion__panel p {
  margin: 0;
  font-size: 15px;
  line-height: 1.78;
  color: var(--ink-soft);
  max-width: 62ch;
}

.page-home .home-help__side {
  padding: 26px 22px;
  border-radius: var(--radius-m);
  background: rgba(20, 52, 92, .72);
  border: 1px solid var(--home-line);
  border-top: 4px solid var(--orange);
}

.page-home .home-help__title {
  margin: 0 0 12px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 21px;
  color: var(--white);
}

.page-home .home-help__text {
  margin: 0 0 20px;
  font-size: 15px;
  line-height: 1.78;
  color: var(--ink-soft);
}

.page-home .home-help__text strong {
  color: var(--neon);
  font-weight: 600;
}

.page-home .home-help__links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

/* ============ 断点 ============ */
@media (min-width: 640px) {
  .page-home .home-open__bar-inner {
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    padding: 0;
  }

  .page-home .home-open__datum {
    padding: 22px 24px;
    border-left: 1px solid var(--home-line);
  }

  .page-home .home-open__datum:first-child {
    padding-left: 0;
    border-left: 0;
  }

  .page-home .home-metrics,
  .page-home .home-index,
  .page-home .home-help {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 900px) {
  .page-home {
    --home-pad: 92px;
  }

  .page-home .home-open {
    padding-top: calc(var(--header-h) + 56px);
  }

  .page-home .home-open__inner {
    grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
    gap: 52px;
  }

  .page-home .home-open__figure {
    clip-path: polygon(6% 0, 100% 0, 100% 100%, 0 100%);
  }

  .page-home .home-open__figure img {
    min-height: 320px;
  }

  .page-home .home-open__bar {
    margin-top: 56px;
  }

  .page-home .home-blade {
    height: 62px;
  }

  .page-home .home-local {
    grid-template-columns: minmax(0, 6fr) minmax(0, 6fr);
    gap: 48px;
  }

  .page-home .home-report {
    grid-template-columns: minmax(0, 8fr) minmax(0, 4fr);
    gap: 48px;
    align-items: start;
  }

  .page-home .home-member__foot {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 28px;
  }

  .page-home .home-help {
    grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
    gap: 48px;
    align-items: start;
  }
}

@media (min-width: 1160px) {
  .page-home .home-index {
    grid-template-columns: repeat(4, 1fr);
  }

  .page-home .home-index__card:nth-child(2) {
    transform: translateY(18px);
  }

  .page-home .home-index__card:nth-child(2):hover,
  .page-home .home-index__card:nth-child(2):focus-visible {
    transform: translateY(14px);
  }

  .page-home .home-index__card:nth-child(3) {
    transform: translateY(-10px);
  }

  .page-home .home-index__card:nth-child(3):hover,
  .page-home .home-index__card:nth-child(3):focus-visible {
    transform: translateY(-14px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .page-home .home-metric,
  .page-home .home-index__card,
  .page-home .home-venue .segmented__btn {
    transition: none;
  }

  .page-home .home-open h1,
  .page-home .home-chapter__num {
    transform: none;
  }
}
