.page-home {
  display: block;
  background: var(--ink-900);
  color: var(--text);
  font-family: var(--font-sans);
  overflow-x: clip;
}

/* ============ 首屏 ============ */
.page-home .hero {
  position: relative;
  isolation: isolate;
  padding: clamp(1.1rem, 2.6vw, 1.6rem) 0 clamp(2.75rem, 7vw, 4.75rem);
  background:
    radial-gradient(115% 95% at 88% -10%, rgba(37, 99, 235, .26), transparent 62%),
    var(--ink-900);
  border-bottom: var(--hairline);
  overflow: hidden;
}

.page-home .hero::before {
  content: "";
  position: absolute;
  top: -22%;
  right: -14%;
  width: min(720px, 70%);
  height: 148%;
  background: linear-gradient(158deg, rgba(45, 212, 191, .20), rgba(214, 161, 91, .12) 46%, transparent 74%);
  transform: skewX(-15deg);
  z-index: -1;
  pointer-events: none;
}

.page-home .hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  pointer-events: none;
}

.page-home .hero-bg img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .28;
}

.page-home .hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, var(--ink-900) 14%, rgba(7, 26, 43, .58) 54%, rgba(7, 26, 43, .94) 100%);
}

.page-home .hero-scale {
  display: none;
}

.page-home .hero-shell {
  position: relative;
  z-index: 1;
}

.page-home .hero-grid {
  display: grid;
  gap: 1.75rem;
  margin-top: 1.5rem;
}

.page-home .hero-copy h1 {
  margin: .7rem 0 1rem;
  font-size: clamp(1.75rem, 6.4vw, 3.35rem);
  font-weight: 900;
  line-height: 1.16;
  letter-spacing: -.02em;
  max-width: 17em;
}

.page-home .hero-copy .lede {
  max-width: 46em;
  color: var(--text-dim);
}

.page-home .hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .7rem;
  margin-top: 1.6rem;
}

.page-home .hero-round {
  display: flex;
  align-items: baseline;
  gap: .7rem;
  padding-bottom: .35rem;
  border-bottom: 2px solid rgba(214, 161, 91, .35);
}

.page-home .hero-round-label,
.page-home .hero-round-meta {
  font-family: var(--font-mono);
  font-size: .72rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--text-dim);
}

.page-home .hero-round-num {
  font-family: var(--font-mono);
  font-size: clamp(3.6rem, 17vw, 9.5rem);
  font-weight: 700;
  line-height: .82;
  letter-spacing: -.05em;
  color: var(--gold);
}

@supports ((-webkit-background-clip: text) or (background-clip: text)) {
  .page-home .hero-round-num {
    background: linear-gradient(175deg, var(--gold) 12%, var(--signal) 96%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
  }
}

/* ============ 滚动数据条 ============ */
.page-home .datastrip {
  padding: clamp(1.6rem, 4vw, 2.4rem) 0 clamp(2rem, 5vw, 3rem);
  background: linear-gradient(180deg, var(--ink-850), var(--ink-900));
  border-bottom: var(--hairline);
}

.page-home .datastrip-head {
  display: flex;
  flex-direction: column;
  gap: .5rem;
  margin-bottom: 1.4rem;
}

.page-home .datastrip-head .eyebrow {
  margin: 0;
}

.page-home .datastrip-note {
  margin: 0;
  max-width: 52em;
  font-size: .9375rem;
  line-height: 1.7;
  color: var(--text-dim);
}

.page-home .marquee {
  display: flex;
  overflow: hidden;
  border-top: var(--hairline);
  border-bottom: var(--hairline);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
}

.page-home .marquee-track {
  display: flex;
  flex: 0 0 auto;
  margin: 0;
  padding: 0;
  list-style: none;
  animation: home-marquee 52s linear infinite;
}

.page-home .marquee-item {
  flex: 0 0 auto;
  width: clamp(168px, 22vw, 226px);
  padding: 1rem 1.15rem;
  border-right: var(--hairline);
  background: linear-gradient(180deg, rgba(18, 58, 90, .28), transparent);
}

.page-home .marquee-key {
  display: block;
  font-size: .6875rem;
  letter-spacing: .16em;
  color: var(--text-dim);
}

.page-home .marquee-val {
  display: block;
  margin-top: .35rem;
  font-family: var(--font-mono);
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--text);
  white-space: nowrap;
}

.page-home .marquee-item:nth-child(3n + 1) .marquee-val {
  color: var(--gold);
}

@keyframes home-marquee {
  to { transform: translateX(-100%); }
}

/* ============ 多联赛覆盖 ============ */
.page-home .leagues {
  padding: clamp(3rem, 7vw, 5.5rem) 0;
  background: linear-gradient(180deg, var(--ink-900), var(--ink-850));
  border-bottom: var(--hairline);
}

.page-home .leagues-grid {
  display: grid;
  gap: 2.25rem;
  align-items: center;
}

.page-home .leagues-copy h2 {
  margin: .6rem 0 .9rem;
  font-size: clamp(1.4rem, 4.2vw, 2.15rem);
  font-weight: 800;
  line-height: 1.24;
  letter-spacing: -.015em;
}

.page-home .leagues-copy .lede {
  color: var(--text-dim);
  max-width: 42em;
}

.page-home .league-tags {
  display: flex;
  flex-wrap: wrap;
  gap: .45rem;
  margin: 1.6rem 0 0;
  padding: 0;
  list-style: none;
}

.page-home .league-tags li {
  padding: .34rem .72rem;
  font-family: var(--font-mono);
  font-size: .8125rem;
  letter-spacing: .06em;
  color: var(--text-dim);
  background: rgba(18, 58, 90, .4);
  border: var(--hairline);
  border-radius: var(--radius);
}

.page-home .league-tags li.is-primary {
  color: var(--ink-900);
  font-weight: 600;
  background: linear-gradient(120deg, var(--cyan-start), var(--cyan-end));
  border-color: transparent;
}

.page-home .league-tags li.is-cup {
  color: var(--gold);
  border-color: rgba(214, 161, 91, .45);
}

.page-home .leagues-figure {
  margin: 0;
}

.page-home .leagues-figure .media-frame {
  border: var(--hairline);
  border-radius: var(--radius);
}

.page-home .leagues-figure figcaption {
  margin-top: .7rem;
}

/* ============ Bento 服务入口 ============ */
.page-home .services {
  padding: clamp(3rem, 7vw, 5.5rem) 0;
  background: var(--ink-900);
  border-bottom: var(--hairline);
}

.page-home .bento-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 14px;
  margin-top: 2rem;
}

.page-home .bento-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: .7rem;
  padding: clamp(1.15rem, 2.6vw, 1.85rem);
  background: linear-gradient(165deg, var(--ink-800), #0A2137);
  border: var(--hairline);
  border-radius: var(--radius);
  transition: border-color .3s var(--ease), transform .3s var(--ease);
}

.page-home .bento-card:hover,
.page-home .bento-card:focus-within {
  border-color: rgba(214, 161, 91, .45);
  transform: translateY(-2px);
}

.page-home .bento-card h3 {
  margin: 0;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: -.01em;
}

.page-home .bento-card p {
  margin: 0;
  font-size: .9375rem;
  line-height: 1.72;
  color: var(--text-dim);
}

.page-home .card-index {
  position: absolute;
  top: .7rem;
  right: .9rem;
  font-family: var(--font-mono);
  font-size: .75rem;
  letter-spacing: .18em;
  color: rgba(214, 161, 91, .65);
}

.page-home .chip-list {
  display: flex;
  flex-wrap: wrap;
  gap: .4rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.page-home .chip-list li {
  padding: .2rem .55rem;
  font-size: .75rem;
  letter-spacing: .05em;
  color: var(--text-dim);
  border: var(--hairline);
  border-radius: var(--radius);
}

.page-home .card-figure {
  margin: .4rem 0 0;
  overflow: hidden;
  border: var(--hairline);
  border-radius: var(--radius);
  aspect-ratio: 3 / 2;
}

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

.page-home .card-link {
  margin-top: auto;
  padding-top: .3rem;
  font-size: .875rem;
  font-weight: 600;
  letter-spacing: .02em;
  color: var(--gold);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color .25s var(--ease), color .25s var(--ease);
}

.page-home .card-link::after {
  content: " →";
  font-family: var(--font-mono);
}

.page-home .card-link:hover,
.page-home .card-link:focus-visible {
  color: var(--signal);
  border-bottom-color: var(--signal);
}

/* ============ 精选复盘与信任信号 ============ */
.page-home .highlights {
  padding: clamp(3rem, 7vw, 5.5rem) 0;
  background: linear-gradient(180deg, var(--ink-900), var(--ink-800));
  border-bottom: var(--hairline);
}

.page-home .highlights-grid {
  display: grid;
  gap: 2rem;
  margin-top: 2rem;
}

.page-home .review-list {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: var(--hairline-strong);
}

.page-home .review-item {
  display: grid;
  gap: .35rem;
  padding: 1.2rem 0;
  border-bottom: var(--hairline);
}

.page-home .review-item h3 {
  margin: 0 0 .3rem;
  font-size: 1.0625rem;
  font-weight: 700;
  line-height: 1.4;
}

.page-home .review-item p {
  margin: 0;
  font-size: .9375rem;
  line-height: 1.72;
  color: var(--text-dim);
}

.page-home .review-round {
  font-family: var(--font-mono);
  font-size: .75rem;
  letter-spacing: .14em;
  color: var(--signal);
}

.page-home .trust-panel {
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
  padding: clamp(1.25rem, 3vw, 1.9rem);
  background: linear-gradient(160deg, rgba(45, 212, 191, .12), rgba(14, 42, 68, .9) 46%, var(--ink-850));
  border: var(--hairline);
  border-radius: var(--radius);
}

.page-home .trust-stats {
  display: grid;
  gap: 1.1rem;
}

.page-home .trust-num {
  display: block;
  font-family: var(--font-mono);
  font-size: clamp(1.9rem, 6vw, 2.6rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -.03em;
  color: var(--cyan-start);
}

.page-home .trust-unit {
  margin-left: .15em;
  font-size: .5em;
  color: var(--text-dim);
}

.page-home .trust-label {
  display: block;
  margin-top: .45rem;
  font-size: .875rem;
  line-height: 1.6;
  color: var(--text-dim);
}

.page-home .trust-badges {
  display: grid;
  gap: .5rem;
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: var(--hairline);
  padding-top: 1.1rem;
}

.page-home .trust-badges li {
  position: relative;
  padding-left: 1rem;
  font-size: .8125rem;
  line-height: 1.6;
  color: var(--text);
}

.page-home .trust-badges li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .55em;
  width: 5px;
  height: 5px;
  background: var(--gold);
  transform: rotate(45deg);
}

.page-home .trust-panel .btn {
  align-self: flex-start;
}

/* ============ 反馈通道 ============ */
.page-home .feedback {
  padding: clamp(3rem, 7vw, 5rem) 0;
  background:
    radial-gradient(115% 120% at 4% 100%, rgba(255, 107, 53, .18), transparent 56%),
    var(--ink-850);
}

.page-home .feedback-grid {
  display: grid;
  gap: 2rem;
}

.page-home .feedback-copy h2 {
  margin: .6rem 0 .9rem;
  font-size: clamp(1.4rem, 4.4vw, 2.15rem);
  font-weight: 800;
  line-height: 1.24;
  letter-spacing: -.015em;
}

.page-home .feedback-copy p {
  margin: 0;
  max-width: 40em;
  font-size: .9375rem;
  line-height: 1.75;
  color: var(--text-dim);
}

.page-home .feedback-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .7rem;
  margin-top: 1.6rem;
}

.page-home .feedback-card {
  padding: clamp(1.15rem, 3vw, 1.8rem);
  background: rgba(7, 26, 43, .72);
  border: var(--hairline-strong);
  border-radius: var(--radius);
}

.page-home .feedback-card .contact-key {
  margin: 0 0 .4rem;
  font-size: .6875rem;
  letter-spacing: .18em;
  color: var(--text-dim);
}

.page-home .feedback-card .contact-key:not(:first-child) {
  margin-top: 1.2rem;
}

.page-home .feedback-card .contact-row {
  display: flex;
  align-items: center;
  gap: .6rem;
  flex-wrap: wrap;
}

.page-home .feedback-card .contact-value {
  font-family: var(--font-mono);
  font-size: .875rem;
  word-break: break-all;
  color: var(--text);
}

.page-home .feedback-note {
  margin: 1.3rem 0 0;
  padding-top: 1rem;
  border-top: var(--hairline);
  font-size: .8125rem;
  line-height: 1.7;
  color: var(--text-dim);
}

/* ============ 响应式 ============ */
@media (min-width: 640px) {
  .page-home .review-item {
    grid-template-columns: 6.5rem minmax(0, 1fr);
    align-items: start;
    gap: 1rem;
  }

  .page-home .trust-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 880px) {
  .page-home .hero-grid {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: end;
    gap: 2.5rem 3rem;
    margin-top: 2.75rem;
  }

  .page-home .hero-round {
    justify-self: end;
    flex-direction: column;
    align-items: flex-end;
    gap: .35rem;
    border-bottom: none;
    border-right: 2px solid rgba(214, 161, 91, .4);
    padding: 0 1.1rem 0 0;
  }

  .page-home .hero-scale {
    position: absolute;
    left: max(0.6rem, calc((100vw - var(--shell-max)) / 2 - 2.4rem));
    top: clamp(7rem, 16vh, 11rem);
    display: flex;
    flex-direction: column;
    gap: .85rem;
    font-family: var(--font-mono);
    font-size: .75rem;
    letter-spacing: .12em;
    color: rgba(159, 179, 200, .45);
    z-index: 1;
  }

  .page-home .hero-scale span {
    position: relative;
    padding-left: .9rem;
  }

  .page-home .hero-scale span::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: .45rem;
    height: 1px;
    background: currentColor;
  }

  .page-home .hero-scale .is-active {
    color: var(--gold);
    font-weight: 600;
  }

  .page-home .leagues-grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.12fr);
    gap: 3.5rem;
  }

  .page-home .highlights-grid {
    grid-template-columns: minmax(0, 1.45fr) minmax(0, 1fr);
    gap: 2.75rem;
    align-items: start;
  }

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

@media (min-width: 980px) {
  .page-home .bento-grid {
    grid-template-columns: repeat(6, minmax(0, 1fr));
    grid-auto-rows: minmax(148px, auto);
  }

  .page-home .bento-card--schedule { grid-column: 1 / span 4; grid-row: 1 / span 2; }
  .page-home .bento-card--record   { grid-column: 5 / span 2; grid-row: 1; }
  .page-home .bento-card--coach    { grid-column: 5 / span 2; grid-row: 2; }
  .page-home .bento-card--map      { grid-column: 1 / span 4; grid-row: 3 / span 2; }
  .page-home .bento-card--answer   { grid-column: 5 / span 2; grid-row: 3; }
  .page-home .bento-card--partner  { grid-column: 5 / span 2; grid-row: 4; }

  .page-home .bento-card--schedule .card-figure,
  .page-home .bento-card--map .card-figure {
    aspect-ratio: 16 / 9;
  }
}

@media (prefers-reduced-motion: reduce) {
  .page-home .marquee-track {
    animation: none;
  }

  .page-home .bento-card {
    transition: none;
  }

  .page-home .bento-card:hover,
  .page-home .bento-card:focus-within {
    transform: none;
  }
}
