.page-home {
  --home-panel: #101314;
  --home-card-shadow: 0 18px 44px -26px rgba(0, 0, 0, 0.85);
  background: var(--ink);
  color: var(--text);
  overflow-x: hidden;
}

/* ---------- 首屏 ---------- */

.page-home .home-hero {
  position: relative;
  padding: clamp(32px, 6vw, 72px) 0 clamp(38px, 6vw, 84px);
  background:
    radial-gradient(120% 82% at 88% 4%, rgba(30, 58, 49, 0.92) 0%, rgba(11, 27, 23, 0) 62%),
    linear-gradient(180deg, #0B1B17 0%, #0E211C 100%);
  border-bottom: 1px solid var(--rule);
}

.page-home .home-hero__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(28px, 5vw, 56px);
  align-items: center;
}

.page-home .home-hero__title {
  font-family: var(--font-display);
  font-size: clamp(38px, 8vw, 86px);
  font-weight: 800;
  line-height: 0.96;
  letter-spacing: -0.035em;
  color: var(--paper);
  margin: 14px 0 20px;
  max-width: 10em;
}

.page-home .home-hero__lede {
  margin: 0;
  max-width: 34em;
  color: var(--text);
  font-size: clamp(15px, 1.5vw, 17px);
  line-height: 1.85;
}

.page-home .home-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.page-home .home-hero__meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: 32px 0 0;
  padding-top: 20px;
  border-top: 1px solid var(--rule);
}

.page-home .home-hero__meta dt {
  font-size: 11.5px;
  letter-spacing: 0.1em;
  color: var(--muted);
}

.page-home .home-hero__meta dd {
  margin: 7px 0 0;
  font-family: var(--font-mono);
  font-size: clamp(13px, 3.2vw, 18px);
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--gold);
}

.page-home .home-hero__visual {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  background: var(--ink-2);
  aspect-ratio: 4 / 5;
  box-shadow: 0 30px 70px -40px rgba(0, 0, 0, 0.95);
}

.page-home .home-hero__img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.9) contrast(1.06);
}

.page-home .home-hero__net {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  color: var(--lime);
  opacity: 0.55;
  mix-blend-mode: screen;
  pointer-events: none;
}

/* ---------- 栏目跳转 ---------- */

.page-home .home-index {
  background: var(--ink-2);
  border-bottom: 1px solid var(--rule);
}

.page-home .home-index__inner {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding-block: 12px;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.page-home .home-index__inner::-webkit-scrollbar {
  display: none;
}

.page-home .home-index__link {
  flex: 0 0 auto;
  padding: 7px 15px;
  border: 1px solid var(--rule);
  border-radius: 999px;
  font-size: 13px;
  letter-spacing: 0.02em;
  color: var(--muted);
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.2s var(--ease), background 0.2s var(--ease), border-color 0.2s var(--ease);
}

.page-home .home-index__link:hover {
  color: var(--paper);
  border-color: var(--rule-soft);
}

.page-home .home-index__link[aria-current="true"] {
  background: var(--lime);
  border-color: var(--lime);
  color: var(--ink);
}

/* ---------- 通用章节 ---------- */

.page-home .home-section {
  position: relative;
  padding: clamp(52px, 8vw, 104px) 0;
  border-top: 1px solid var(--rule);
}

.page-home .home-round-section {
  border-top: 0;
}

.page-home .home-section__head {
  max-width: 62ch;
  margin-bottom: clamp(28px, 4vw, 48px);
}

.page-home .home-section__lede {
  margin: 14px 0 0;
  max-width: 42em;
  color: var(--text);
  font-size: clamp(15px, 1.5vw, 17px);
  line-height: 1.85;
}

/* ---------- 赛后复盘 ---------- */

.page-home .home-round {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 18px;
}

.page-home .home-round__figure {
  margin: 0;
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--ink-2);
}

.page-home .home-round__figure img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.page-home .home-round__figure figcaption {
  padding: 12px 16px;
  border-top: 1px solid var(--rule);
  font-size: 12.5px;
  letter-spacing: 0.02em;
  color: var(--muted);
}

.page-home .home-round__card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: clamp(20px, 2.6vw, 30px);
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  background: var(--ink-2);
  transition: transform 0.3s var(--ease), border-color 0.3s var(--ease);
}

.page-home .home-round__card:hover {
  transform: translateY(-3px);
  border-color: var(--rule-soft);
}

.page-home .home-round__card .home-stat__num {
  margin: 4px 0 0;
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: clamp(42px, 5.2vw, 64px);
  line-height: 0.95;
  letter-spacing: -0.03em;
  color: var(--lime);
}

.page-home .home-round__card-title {
  margin: 0;
  font-size: clamp(16px, 1.6vw, 19px);
  font-weight: 700;
  letter-spacing: 0.01em;
  color: var(--paper);
}

.page-home .home-round__card p {
  margin: 0;
  font-size: 14.5px;
  line-height: 1.8;
  color: var(--text);
}

.page-home .home-round__card--paper {
  background: var(--paper);
  border-color: var(--paper);
  box-shadow: var(--home-card-shadow);
}

.page-home .home-round__card--paper .home-stat__num {
  color: var(--red);
}

.page-home .home-round__card--paper .home-round__card-title {
  color: #0B1B17;
}

.page-home .home-round__card--paper p {
  color: #35443E;
}

/* ---------- 转会窗口 ---------- */

.page-home .home-window {
  background: linear-gradient(180deg, var(--ink) 0%, var(--ink-2) 100%);
  overflow: hidden;
}

.page-home .home-window::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 84px;
  background: linear-gradient(90deg, rgba(155, 34, 48, 0.3), rgba(228, 180, 91, 0.12) 55%, rgba(11, 27, 23, 0) 100%);
  transform: skewY(-1.2deg);
  transform-origin: left top;
  pointer-events: none;
}

.page-home .home-window__figure {
  position: relative;
  margin: 0 0 clamp(28px, 4vw, 44px);
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--ink-2);
}

.page-home .home-window__figure img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 2 / 1;
  object-fit: cover;
}

.page-home .home-timeline {
  overflow-x: auto;
  padding: 4px 0 12px;
  scrollbar-width: thin;
}

.page-home .home-timeline__track {
  position: relative;
  display: flex;
  gap: 24px;
  min-width: 880px;
  padding-top: 32px;
}

.page-home .home-timeline__track::before {
  content: "";
  position: absolute;
  top: 16px;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--red) 52%, var(--lime));
  opacity: 0.5;
}

.page-home .home-timeline__item {
  position: relative;
  flex: 1 1 0;
  min-width: 150px;
}

.page-home .home-timeline__item::before {
  content: "";
  position: absolute;
  top: -19px;
  left: 0;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--ink);
  border: 2px solid var(--muted);
}

.page-home .home-timeline__item--gold::before {
  background: var(--gold);
  border-color: var(--gold);
}

.page-home .home-timeline__item--red::before {
  background: var(--red);
  border-color: var(--red);
  box-shadow: 0 0 0 5px rgba(155, 34, 48, 0.2);
}

.page-home .home-timeline__item--lime::before {
  background: var(--lime);
  border-color: var(--lime);
}

.page-home .home-timeline__stage {
  margin: 0;
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: 0.14em;
  color: var(--muted);
}

.page-home .home-timeline__title {
  margin: 7px 0 7px;
  font-size: 16px;
  font-weight: 700;
  color: var(--paper);
}

.page-home .home-timeline__text {
  margin: 0;
  font-size: 13.5px;
  line-height: 1.78;
  color: var(--text);
}

/* ---------- 订阅与观赛 ---------- */

.page-home .home-sub__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(24px, 4vw, 40px);
  align-items: start;
}

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

.page-home .home-steps__item {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 6px 18px;
  padding: 20px 0;
  border-top: 1px solid var(--rule);
}

.page-home .home-steps__item:last-child {
  border-bottom: 1px solid var(--rule);
}

.page-home .home-steps__no {
  grid-row: span 2;
  padding-top: 3px;
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--lime);
}

.page-home .home-steps__item h3 {
  margin: 0;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: var(--paper);
}

.page-home .home-steps__item p {
  margin: 0;
  font-size: 14.5px;
  line-height: 1.8;
  color: var(--text);
}

.page-home .home-sub__figure {
  margin: 0;
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--ink-2);
}

.page-home .home-sub__figure img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 4;
  object-fit: cover;
}

.page-home .home-sub__figure figcaption {
  padding: 12px 16px;
  border-top: 1px solid var(--rule);
  font-size: 12.5px;
  color: var(--muted);
}

.page-home .home-sub__more,
.page-home .home-window__more {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: clamp(28px, 4vw, 40px) 0 0;
}

/* ---------- 计分方式 ---------- */

.page-home .home-score__entries {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 16px;
  margin-bottom: clamp(28px, 4vw, 44px);
}

.page-home .home-score__entry {
  display: block;
  padding: clamp(20px, 2.4vw, 28px);
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  background: var(--ink-2);
  text-decoration: none;
  transition: transform 0.3s var(--ease), border-color 0.3s var(--ease);
}

.page-home .home-score__entry:hover {
  transform: translateY(-3px);
  border-color: var(--lime);
}

.page-home .home-score__no {
  display: inline-block;
  margin-bottom: 14px;
  padding: 3px 9px;
  border-radius: 4px;
  background: var(--lime);
  color: var(--ink);
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.page-home .home-score__entry h3 {
  margin: 0 0 8px;
  font-size: 18px;
  font-weight: 700;
  color: var(--paper);
}

.page-home .home-score__entry p {
  margin: 0;
  font-size: 14px;
  line-height: 1.78;
  color: var(--text);
}

.page-home .home-score__calc {
  padding: clamp(24px, 3.5vw, 40px);
  border-radius: var(--radius);
  background: var(--paper);
  color: #14231E;
}

.page-home .home-score__calc .bw-eyebrow {
  color: #6B5A34;
}

.page-home .home-score__calc h3 {
  margin: 10px 0 20px;
  font-size: clamp(20px, 2.2vw, 26px);
  font-weight: 800;
  letter-spacing: -0.01em;
  color: #0B1B17;
}

.page-home .home-score__lines {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid rgba(11, 27, 23, 0.18);
}

.page-home .home-score__lines li {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 6px 20px;
  padding: 13px 0;
  border-bottom: 1px solid rgba(11, 27, 23, 0.18);
  font-size: 14.5px;
}

.page-home .home-score__lines span {
  color: #35443E;
}

.page-home .home-score__lines b {
  font-family: var(--font-mono);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: #0B1B17;
}

.page-home .home-score__note {
  margin: 18px 0 0;
  font-size: 13.5px;
  line-height: 1.8;
  color: #35443E;
}

.page-home .home-score__note a {
  color: var(--red);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ---------- 关于我们 ---------- */

.page-home .home-trust {
  background: linear-gradient(180deg, var(--ink-2) 0%, var(--ink) 100%);
}

.page-home .home-trust__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(28px, 4vw, 52px);
  align-items: start;
}

.page-home .home-trust__copy p {
  margin: 16px 0 0;
  max-width: 40em;
  font-size: 15px;
  line-height: 1.86;
  color: var(--text);
}

.page-home .home-trust__copy .bw-btn {
  margin-top: 26px;
}

.page-home .home-trust__stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin: 0;
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--rule);
}

.page-home .home-trust__stats > div {
  padding: 20px 18px;
  background: var(--ink-2);
}

.page-home .home-trust__stats dt {
  font-size: 12px;
  letter-spacing: 0.1em;
  color: var(--muted);
}

.page-home .home-trust__stats dd {
  margin: 8px 0 0;
  font-family: var(--font-mono);
  font-size: clamp(22px, 2.6vw, 30px);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--lime);
}

.page-home .home-trust__cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: clamp(36px, 5vw, 56px);
  padding-top: 24px;
  border-top: 1px solid var(--rule);
}

.page-home .home-trust__cta p {
  margin: 0;
  max-width: 46em;
  font-size: 15px;
  line-height: 1.8;
  color: var(--text);
}

/* ---------- 进入视口 ---------- */

@keyframes home-rise {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

.page-home [data-reveal].is-visible {
  animation: home-rise 0.6s var(--ease) both;
}

/* ---------- 响应式 ---------- */

@media (min-width: 720px) {
  .page-home .home-score__entries {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 900px) {
  .page-home .home-hero__inner {
    grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
  }

  .page-home .home-round {
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: 20px;
  }

  .page-home .home-round__figure {
    grid-column: 1 / span 7;
  }

  .page-home .home-round__card--shots {
    grid-column: 8 / span 5;
  }

  .page-home .home-round__card--pass {
    grid-column: 1 / span 5;
  }

  .page-home .home-round__card--run {
    grid-column: 6 / span 7;
  }

  .page-home .home-sub__grid {
    grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
  }

  .page-home .home-trust__grid {
    grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
  }
}

@media (min-width: 1180px) {
  .page-home .home-timeline__track {
    min-width: 0;
  }
}

@media (max-width: 480px) {
  .page-home .home-hero__meta {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .page-home .home-trust__stats {
    grid-template-columns: minmax(0, 1fr);
  }

  .page-home .home-timeline {
    margin-inline: calc(var(--gutter) * -1);
    padding-inline: var(--gutter);
  }
}

@media (prefers-reduced-motion: reduce) {
  .page-home [data-reveal].is-visible {
    animation: none;
  }

  .page-home .home-round__card,
  .page-home .home-score__entry,
  .page-home .home-index__link {
    transition: none;
  }
}
