.page-home {
  display: block;
}

/* ============ 首屏框景数据窗 ============ */
.page-home .home-hero .shell {
  padding-top: 8px;
}

.page-home .home-hero__board {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-soft);
  background: linear-gradient(160deg, var(--green-turf) 0%, var(--green-deep) 72%);
  box-shadow: var(--shadow-lift);
  padding: clamp(26px, 5vw, 56px);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 30px;
  min-height: 560px;
  color: var(--white);
}

.page-home .home-hero__photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.5;
  z-index: 0;
}

.page-home .home-hero__scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(11, 59, 46, 0.32) 0%, rgba(10, 33, 24, 0.94) 82%);
}

.page-home .home-hero__tick {
  position: absolute;
  z-index: 3;
  pointer-events: none;
}

.page-home .home-hero__tick--top,
.page-home .home-hero__tick--bottom {
  left: 26px;
  right: 26px;
  height: 8px;
  background-image: repeating-linear-gradient(to right, rgba(241, 246, 243, 0.5) 0 2px, transparent 2px 16px);
}

.page-home .home-hero__tick--top {
  top: 16px;
}

.page-home .home-hero__tick--bottom {
  bottom: 16px;
}

.page-home .home-hero__tick--left,
.page-home .home-hero__tick--right {
  top: 26px;
  bottom: 26px;
  width: 8px;
  background-image: repeating-linear-gradient(to bottom, rgba(241, 246, 243, 0.5) 0 2px, transparent 2px 16px);
}

.page-home .home-hero__tick--left {
  left: 16px;
}

.page-home .home-hero__tick--right {
  right: 16px;
}

.page-home .home-hero__copy {
  position: relative;
  z-index: 2;
  max-width: 40em;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.page-home .home-hero__eyebrow {
  color: var(--yellow);
}

.page-home .home-hero__title {
  font-family: var(--font-head);
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1.15;
  font-size: clamp(28px, 5.4vw, 52px);
  margin: 0;
  color: var(--white);
}

.page-home .home-hero__lead {
  margin: 0;
  font-size: clamp(15px, 1.6vw, 17px);
  line-height: 1.75;
  color: rgba(241, 246, 243, 0.88);
  max-width: 44em;
}

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

.page-home .home-hero__actions .btn--ghost {
  color: var(--white);
  border-color: rgba(241, 246, 243, 0.5);
}

.page-home .home-hero__readout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 6px 4px;
  padding: 16px 14px;
  border-radius: var(--radius-panel);
  background: rgba(11, 59, 46, 0.6);
  border: 1px solid rgba(241, 246, 243, 0.16);
}

.page-home .home-stat {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 8px 12px 10px;
  border-left: 2px solid rgba(255, 210, 74, 0.7);
  min-width: 0;
}

.page-home .home-stat__num {
  font-size: clamp(26px, 4vw, 40px);
  line-height: 1;
}

.page-home .home-stat__label {
  color: rgba(241, 246, 243, 0.78);
  letter-spacing: 0.04em;
}

/* ============ 射门对照台 ============ */
.page-home .home-shots .section__head {
  margin-bottom: 22px;
}

.page-home .home-shots__grid {
  gap: 22px;
}

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

.page-home .home-shots__media .media__frame {
  border-radius: var(--radius-soft);
  overflow: hidden;
  box-shadow: var(--shadow-panel);
}

.page-home .home-shots__media .media__img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4 / 5;
}

.page-home .home-shots__media .media__caption {
  margin-top: 12px;
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.7;
}

.page-home .home-shots__panel {
  padding: 22px 20px 20px;
  border-radius: var(--radius-soft);
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.page-home .home-shots__tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.page-home .home-shots__tabs .tabs__btn {
  border: 1px solid rgba(241, 246, 243, 0.24);
  background: transparent;
  color: rgba(241, 246, 243, 0.75);
  border-radius: var(--radius-pill);
  padding: 8px 16px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: background 200ms ease, color 200ms ease, border-color 200ms ease;
}

.page-home .home-shots__tabs .tabs__btn[aria-selected="true"] {
  background: var(--yellow);
  border-color: var(--yellow);
  color: var(--ink);
}

.page-home .home-shots__tabpanel {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.page-home .home-shots__caption {
  margin: 0 0 10px;
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.02em;
  color: var(--yellow);
}

.page-home .shot-row {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr) auto minmax(0, 1fr) 34px;
  align-items: center;
  gap: 8px;
  padding: 12px 0;
  border-top: 1px solid rgba(241, 246, 243, 0.12);
}

.page-home .shot-row:first-of-type {
  border-top: none;
}

.page-home .shot-row__lead,
.page-home .shot-row__trail {
  font-size: 20px;
  text-align: center;
  line-height: 1;
}

.page-home .shot-row__bars {
  display: flex;
  height: 14px;
  border-radius: var(--radius-pill);
  background: rgba(241, 246, 243, 0.08);
  overflow: hidden;
}

.page-home .shot-row__bars--l {
  justify-content: flex-end;
}

.page-home .shot-row__bars--r {
  justify-content: flex-start;
}

.page-home .shot-row__fill {
  display: block;
  height: 100%;
  border-radius: var(--radius-pill);
  background: linear-gradient(90deg, var(--yellow) 0%, var(--orange-warm) 100%);
  transition: width 600ms ease-out;
}

.page-home .shot-row__bars--r .shot-row__fill {
  background: linear-gradient(90deg, var(--orange-warm) 0%, var(--red-card) 100%);
}

.page-home .shot-row__axis {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  min-width: 80px;
  text-align: center;
}

.page-home .shot-row__label {
  font-size: 12px;
  letter-spacing: 0.04em;
  color: rgba(241, 246, 243, 0.9);
  white-space: nowrap;
}

.page-home .shot-row__delta {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--yellow);
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.page-home .home-shots__legend {
  margin: 12px 0 0;
  font-size: 13px;
  color: rgba(241, 246, 243, 0.65);
  line-height: 1.7;
}

.page-home .home-shots__foot {
  margin-top: 4px;
  padding-top: 16px;
  border-top: 1px dashed rgba(241, 246, 243, 0.24);
}

/* ============ 转会与外援追踪带 ============ */
.page-home .home-transfers__board {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-soft);
  padding: clamp(24px, 4.4vw, 50px);
  background: var(--green-deep);
  box-shadow: var(--shadow-lift);
  color: var(--white);
}

.page-home .home-transfers__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.32;
  z-index: 0;
}

.page-home .home-transfers__scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(135deg, rgba(11, 59, 46, 0.95) 0%, rgba(10, 33, 24, 0.78) 100%);
}

.page-home .home-transfers__inner {
  position: relative;
  z-index: 2;
}

.page-home .home-transfers__tag {
  color: var(--yellow);
}

.page-home .home-transfers__title {
  color: var(--white);
}

.page-home .home-transfers__desc {
  color: rgba(241, 246, 243, 0.82);
  max-width: 46em;
}

.page-home .home-timeline {
  list-style: none;
  margin: 28px 0 0;
  padding: 0;
  display: grid;
  gap: 14px;
}

.page-home .home-timeline__node {
  position: relative;
  padding: 18px 18px 20px;
  border-radius: var(--radius-panel);
  background: var(--white);
  color: var(--ink);
  box-shadow: var(--shadow-panel);
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.page-home .home-timeline__node::before {
  content: "";
  position: absolute;
  top: 0;
  left: 18px;
  right: 18px;
  height: 3px;
  border-radius: var(--radius-pill);
  background: linear-gradient(90deg, var(--yellow) 0%, var(--orange-warm) 100%);
}

.page-home .home-timeline__when {
  color: var(--red-text);
  margin-top: 8px;
}

.page-home .home-timeline__title {
  margin: 0;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 18px;
  line-height: 1.35;
  color: var(--ink);
}

.page-home .home-timeline__text {
  margin: 0;
  font-size: 14px;
  line-height: 1.75;
  color: var(--ink-soft);
}

.page-home .home-timeline__link {
  margin-top: 4px;
  font-size: 13px;
  font-weight: 700;
  color: var(--red-text);
  text-decoration: none;
  letter-spacing: 0.02em;
}

.page-home .home-timeline__link:hover {
  text-decoration: underline;
}

/* ============ 红黄牌累计看板 ============ */
.page-home .home-cards__panel {
  position: relative;
  overflow: hidden;
  padding: 24px 20px;
  border-radius: var(--radius-soft);
}

.page-home .home-cards__deco {
  position: absolute;
  top: -30px;
  right: -30px;
  width: 46%;
  max-width: 300px;
  pointer-events: none;
  opacity: 0.4;
}

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

.page-home .home-cards__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 12px;
  position: relative;
  z-index: 2;
}

.page-home .home-cards__row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  padding: 14px 16px;
  border-radius: var(--radius-panel);
  background: var(--white);
  border: 1px solid rgba(34, 80, 63, 0.12);
  box-shadow: var(--shadow-panel);
}

.page-home .home-cards__team {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.page-home .home-cards__name {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 16px;
  color: var(--ink);
}

.page-home .home-cards__meterrow {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.page-home .home-cards__meter {
  flex: 1 1 140px;
  min-width: 120px;
}

.page-home .home-cards__num {
  font-size: 22px;
  color: var(--red-text);
  line-height: 1;
}

.page-home .home-cards__red {
  font-size: 18px;
  color: var(--ink-soft);
  line-height: 1;
  margin-left: 6px;
}

.page-home .home-cards__unit {
  color: var(--ink-soft);
}

.page-home .home-cards__panel .panel__note {
  position: relative;
  z-index: 2;
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px dashed rgba(34, 80, 63, 0.24);
  font-size: 13px;
  line-height: 1.75;
  color: var(--ink-soft);
}

/* ============ 栏目面板导航 ============ */
.page-home .home-panels__stack {
  display: grid;
  gap: 14px;
}

.page-home .home-panels__card {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 16px;
  align-items: center;
  padding: 20px 22px;
  border-radius: var(--radius-panel);
  background: var(--white);
  border: 1px solid rgba(34, 80, 63, 0.14);
  box-shadow: var(--shadow-panel);
  color: var(--ink);
  text-decoration: none;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.page-home .home-panels__card:nth-child(2n) {
  background: var(--mist);
}

.page-home .home-panels__card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lift);
  border-color: rgba(228, 84, 43, 0.5);
}

.page-home .home-panels__no {
  font-size: 26px;
  color: var(--green-turf);
  line-height: 1;
}

.page-home .home-panels__body {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 0;
}

.page-home .home-panels__title {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 19px;
  letter-spacing: -0.01em;
  color: var(--ink);
}

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

.page-home .home-panels__arrow {
  font-size: 22px;
  color: var(--red-card);
  line-height: 1;
  transition: transform 220ms ease;
}

.page-home .home-panels__card:hover .home-panels__arrow {
  transform: translateX(4px);
}

/* ============ 谁在用这些数据 ============ */
.page-home .home-audience__grid {
  gap: 26px;
  align-items: start;
}

.page-home .home-audience__intro .section__head {
  margin-bottom: 16px;
}

.page-home .home-audience__hint {
  margin: 0;
  font-size: 14px;
  line-height: 1.8;
  color: var(--ink-soft);
}

.page-home .home-audience__inline {
  color: var(--red-text);
  font-weight: 700;
  text-decoration: none;
}

.page-home .home-audience__inline:hover {
  text-decoration: underline;
}

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

.page-home .home-audience__item {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  gap: 14px;
  padding: 20px 0;
  border-top: 1px dashed rgba(34, 80, 63, 0.24);
  align-items: start;
}

.page-home .home-audience__item:last-child {
  border-bottom: 1px dashed rgba(34, 80, 63, 0.24);
}

.page-home .home-audience__no {
  font-size: 24px;
  line-height: 1;
  color: var(--green-bright);
}

.page-home .home-audience__body {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 0;
}

.page-home .home-audience__title {
  margin: 0;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 17px;
  color: var(--ink);
}

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

.page-home .home-audience__cta {
  margin-top: 28px;
  padding: 22px 22px;
  border-radius: var(--radius-soft);
  background: linear-gradient(120deg, var(--green-deep) 0%, var(--green-mid) 100%);
  color: var(--white);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}

.page-home .home-audience__ctatext {
  margin: 0;
  font-size: 15px;
  line-height: 1.78;
  color: rgba(241, 246, 243, 0.9);
  max-width: 44em;
}

.page-home .home-audience__cta .home-audience__inline {
  color: var(--yellow);
}

/* ============ 响应式 ============ */
@media (min-width: 640px) {
  .page-home .home-hero__readout {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 4px;
  }

  .page-home .home-cards__row {
    grid-template-columns: 210px minmax(0, 1fr);
    align-items: center;
  }

  .page-home .home-audience__cta {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

@media (min-width: 800px) {
  .page-home .home-hero__board {
    min-height: 620px;
    gap: 40px;
  }

  .page-home .home-timeline {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
  }

  .page-home .home-panels__stack {
    gap: 16px;
  }

  .page-home .home-panels__card:nth-child(2n) {
    margin-left: 32px;
  }

  .page-home .home-panels__card:nth-child(odd) {
    margin-right: 32px;
  }
}

@media (min-width: 960px) {
  .page-home .home-shots__grid {
    grid-template-columns: 5fr 8fr;
    gap: 28px;
    align-items: stretch;
  }

  .page-home .home-shots__media {
    display: flex;
    flex-direction: column;
    height: 100%;
  }

  .page-home .home-shots__media .media__frame {
    flex: 1 1 auto;
    height: 100%;
  }

  .page-home .home-shots__media .media__img {
    height: 100%;
    aspect-ratio: auto;
    min-height: 420px;
  }

  .page-home .home-audience__grid {
    grid-template-columns: 5fr 8fr;
    gap: 44px;
  }

  .page-home .home-cards__panel {
    padding: 32px 30px;
  }

  .page-home .home-shots__panel {
    padding: 28px 28px 24px;
  }
}

@media (max-width: 519px) {
  .page-home .shot-row {
    grid-template-columns: 28px minmax(0, 1fr) auto minmax(0, 1fr) 28px;
    gap: 6px;
  }

  .page-home .shot-row__axis {
    min-width: 64px;
  }

  .page-home .shot-row__label {
    font-size: 11px;
    white-space: normal;
    line-height: 1.3;
  }

  .page-home .home-hero__actions .btn {
    flex: 1 1 auto;
    text-align: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  .page-home .shot-row__fill,
  .page-home .home-panels__card,
  .page-home .home-panels__arrow {
    transition: none;
  }
}
</main>
