.page-home {
  --home-pad: clamp(48px, 8vw, 108px);
  --home-hair: rgba(242, 241, 236, 0.14);
  --home-hair-strong: rgba(242, 241, 236, 0.3);
  --home-ink-hair: rgba(11, 31, 26, 0.14);
  --home-ink-hair-strong: rgba(11, 31, 26, 0.28);
  background: var(--ink);
  overflow-x: clip;
}

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

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

.page-home .home-hero {
  position: relative;
  background:
    radial-gradient(120% 90% at 82% 12%, rgba(198, 242, 78, 0.09), transparent 62%),
    linear-gradient(180deg, #0d2620 0%, #0b1f1a 58%, #0b1f1a 100%);
  border-bottom: 1px solid var(--home-hair);
}

.page-home .home-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(242, 241, 236, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(242, 241, 236, 0.035) 1px, transparent 1px);
  background-size: 72px 72px;
  pointer-events: none;
}

.page-home .home-hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(26px, 5vw, 56px);
  padding-block: clamp(36px, 8vw, 76px) clamp(36px, 7vw, 72px);
}

.page-home .home-hero__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.page-home .home-hero__title {
  margin: 14px 0 0;
  font-family: var(--font-display);
  font-size: clamp(42px, 9vw, 104px);
  font-weight: 800;
  line-height: 0.96;
  letter-spacing: -0.012em;
  color: var(--bone);
}

.page-home .home-hero__lead {
  margin: 20px 0 0;
  max-width: 34em;
  font-size: clamp(15px, 1.05vw, 17.5px);
  line-height: 1.8;
  color: rgba(242, 241, 236, 0.76);
}

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

.page-home .home-hero__facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: clamp(28px, 4vw, 42px) 0 0;
  padding: clamp(16px, 2.4vw, 22px) 0 0;
  list-style: none;
  border-top: 1px solid var(--home-hair);
}

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

.page-home .home-hero__fact-num {
  font-size: clamp(22px, 3.6vw, 38px);
  font-weight: 700;
  line-height: 1;
  color: var(--lime);
  box-shadow: inset 0 -3px 0 rgba(198, 242, 78, 0.28);
}

.page-home .home-hero__fact-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  color: var(--mist);
}

.page-home .home-hero__visual {
  position: relative;
  min-height: 260px;
  aspect-ratio: 4 / 3;
  border: 1px solid var(--home-hair-strong);
  border-radius: var(--radius);
  overflow: hidden;
  background: #08110f;
  isolation: isolate;
  box-shadow: var(--shadow-soft);
}

.page-home .home-hero__photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.46;
  filter: saturate(0.7) contrast(1.1);
}

.page-home .pitch {
  position: absolute;
  inset: 9% 8%;
  border: 1px solid rgba(198, 242, 78, 0.42);
  pointer-events: none;
}

.page-home .pitch__half {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 1px;
  background: rgba(198, 242, 78, 0.32);
}

.page-home .pitch__circle {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 26%;
  aspect-ratio: 1 / 1;
  transform: translate(-50%, -50%);
  border: 1px solid rgba(198, 242, 78, 0.4);
  border-radius: 50%;
}

.page-home .pitch__box {
  position: absolute;
  top: 50%;
  width: 13%;
  height: 46%;
  transform: translateY(-50%);
  border: 1px solid rgba(198, 242, 78, 0.34);
}

.page-home .pitch__box--left {
  left: -1px;
  border-left: 0;
}

.page-home .pitch__box--right {
  right: -1px;
  border-right: 0;
}

.page-home .pitch__beam {
  position: absolute;
  inset: -30%;
  background: radial-gradient(circle at 62% 34%, rgba(198, 242, 78, 0.3), transparent 56%);
  mix-blend-mode: screen;
}

.page-home .home-hero__caption {
  position: absolute;
  left: 14px;
  bottom: 12px;
  margin: 0;
  color: var(--mist);
  z-index: 2;
}

/* ---------- 今日数据条 ---------- */

.page-home .update-bar {
  background: var(--charcoal);
  border-bottom: 1px solid var(--home-hair);
  padding-block: clamp(30px, 5vw, 54px);
}

.page-home .update-bar__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(20px, 3vw, 36px);
  align-items: center;
}

.page-home .update-bar__lead .section-title {
  margin: 10px 0 0;
}

.page-home .update-bar__note {
  margin: 12px 0 0;
  font-size: 15px;
  line-height: 1.75;
  color: rgba(242, 241, 236, 0.66);
}

.page-home .update-bar__list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin: 0;
  padding: 0;
  list-style: none;
  background: var(--home-hair);
  border: 1px solid var(--home-hair);
}

.page-home .update-bar__list li {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 14px 14px 16px;
  background: var(--charcoal);
}

.page-home .update-bar__k {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  color: var(--mist);
}

.page-home .update-bar__v {
  font-size: clamp(20px, 2.6vw, 28px);
  font-weight: 700;
  line-height: 1;
  color: var(--bone);
}

.page-home .update-bar__media {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--home-hair);
  border-radius: var(--radius);
}

.page-home .update-bar__media img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 12 / 7;
  object-fit: cover;
  filter: saturate(0.75) contrast(1.08);
}

/* ---------- 赛季时间轴 ---------- */

.page-home .timeline {
  position: relative;
  background: var(--ink);
  padding-block: var(--home-pad);
  border-bottom: 1px solid var(--home-hair);
  overflow: hidden;
}

.page-home .timeline__texture {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.13;
  pointer-events: none;
}

.page-home .timeline .container {
  position: relative;
  z-index: 1;
}

.page-home .timeline__head .lead {
  max-width: 40em;
}

.page-home .timeline__list {
  position: relative;
  margin: clamp(26px, 4vw, 44px) 0 0;
  padding: 0;
  list-style: none;
}

.page-home .timeline__list::before {
  content: "";
  position: absolute;
  left: 5px;
  top: 6px;
  bottom: 6px;
  width: 1px;
  background: linear-gradient(180deg, transparent, var(--home-hair-strong) 6%, var(--home-hair-strong) 94%, transparent);
}

.page-home .timeline__item {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  padding: 16px 0 16px 28px;
  border-bottom: 1px solid var(--home-hair);
}

.page-home .timeline__item:first-child {
  border-top: 1px solid var(--home-hair);
}

.page-home .timeline__marker {
  position: absolute;
  left: 0;
  top: 20px;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--ink);
  border: 2px solid var(--mist);
  transition: background-color 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.page-home .timeline__item:hover .timeline__marker,
.page-home .timeline__item:focus-within .timeline__marker {
  background: var(--lime);
  border-color: var(--lime);
  box-shadow: 0 0 0 4px rgba(198, 242, 78, 0.16);
}

.page-home .timeline__season {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.03em;
  color: var(--bone);
}

.page-home .timeline__games {
  font-size: 13px;
  letter-spacing: 0.06em;
  color: var(--mist);
}

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

.page-home .timeline__links a {
  padding: 5px 11px;
  border: 1px solid var(--home-hair);
  border-radius: 999px;
  font-size: 12px;
  letter-spacing: 0.06em;
  color: rgba(242, 241, 236, 0.72);
  text-decoration: none;
  transition: border-color 0.2s ease, color 0.2s ease, background-color 0.2s ease;
}

.page-home .timeline__links a:hover,
.page-home .timeline__links a:focus-visible {
  border-color: var(--lime);
  color: var(--lime);
  background: rgba(198, 242, 78, 0.08);
}

/* ---------- 四个入口 ---------- */

.page-home .entry-points {
  background: var(--bone);
  color: var(--charcoal);
  padding-block: var(--home-pad);
  border-bottom: 1px solid var(--home-ink-hair);
}

.page-home .entry-points .eyebrow {
  color: rgba(11, 31, 26, 0.52);
}

.page-home .entry-points__head .section-title {
  color: var(--charcoal);
}

.page-home .entry-points__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin-top: clamp(26px, 4vw, 44px);
}

.page-home .entry-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: clamp(18px, 2.4vw, 26px);
  background: var(--paper);
  border: 1px solid var(--home-ink-hair);
  border-radius: var(--radius);
  text-decoration: none;
  color: inherit;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.page-home .entry-card:hover,
.page-home .entry-card:focus-visible {
  transform: translateY(-4px);
  border-color: var(--home-ink-hair-strong);
  box-shadow: var(--shadow-lift);
}

.page-home .entry-card__title {
  margin: 0;
  font-size: clamp(18px, 2vw, 23px);
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: 0.01em;
  color: var(--charcoal);
}

.page-home .entry-card__text {
  margin: 0;
  font-size: 14.5px;
  line-height: 1.75;
  color: rgba(20, 23, 26, 0.68);
}

.page-home .entry-card__num {
  margin-top: auto;
  padding-top: 14px;
  font-size: clamp(34px, 4.4vw, 54px);
  font-weight: 700;
  line-height: 1;
  color: var(--lime-deep);
  box-shadow: inset 0 -4px 0 rgba(143, 190, 31, 0.35);
}

.page-home .entry-card__unit {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  color: rgba(11, 31, 26, 0.5);
}

.page-home .entry-card--award {
  min-height: 300px;
  border-top: 3px solid var(--amber);
}

.page-home .entry-card--table {
  min-height: 260px;
  border-top: 3px solid var(--lime-deep);
}

.page-home .entry-card--map {
  min-height: 360px;
  border-top: 3px solid var(--ink);
}

.page-home .entry-card__img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  border-radius: 1px;
  margin-bottom: 4px;
  filter: saturate(0.85);
}

.page-home .entry-card--guide {
  min-height: 220px;
  border-top: 3px solid var(--mist);
}

/* ---------- 规模与团队 ---------- */

.page-home .scale {
  background: var(--ink);
  padding-block: var(--home-pad);
  border-bottom: 1px solid var(--home-hair);
}

.page-home .scale__head .lead {
  max-width: 44em;
}

.page-home .scale__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin: clamp(26px, 4vw, 44px) 0 0;
  background: var(--home-hair);
  border: 1px solid var(--home-hair);
}

.page-home .scale__cell {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: clamp(16px, 2.2vw, 24px);
  background: var(--ink);
}

.page-home .scale__label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  color: var(--mist);
  order: 2;
}

.page-home .scale__value {
  margin: 0;
  font-size: clamp(28px, 5vw, 52px);
  font-weight: 700;
  line-height: 1;
  color: var(--bone);
  order: 1;
}

/* ---------- 回访与联络 ---------- */

.page-home .revisit {
  background: var(--charcoal);
  padding-block: var(--home-pad);
}

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

.page-home .revisit__block {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: clamp(20px, 2.8vw, 32px);
  background: var(--ink);
  border: 1px solid var(--home-hair);
  border-radius: var(--radius);
}

.page-home .revisit__block--alt {
  background: linear-gradient(160deg, rgba(198, 242, 78, 0.14), rgba(11, 31, 26, 0.9) 62%), var(--ink);
}

.page-home .revisit__block--wire {
  border-left: 3px solid var(--coral);
}

.page-home .revisit__sub {
  margin: 0;
  font-size: clamp(17px, 1.8vw, 21px);
  font-weight: 700;
  line-height: 1.4;
  color: var(--bone);
}

.page-home .revisit__text {
  margin: 0;
  font-size: 14.5px;
  line-height: 1.8;
  color: rgba(242, 241, 236, 0.7);
}

.page-home .revisit__mail {
  color: var(--lime);
  overflow-wrap: anywhere;
}

.page-home .revisit__block .btn {
  align-self: flex-start;
  margin-top: 6px;
}

/* ---------- 断点 ---------- */

@media (min-width: 620px) {
  .page-home .update-bar__list {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

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

  .page-home .scale__cell--wide {
    grid-column: span 2;
  }

  .page-home .entry-points__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: start;
  }
}

@media (min-width: 760px) {
  .page-home .timeline__item {
    grid-template-columns: 170px 110px minmax(0, 1fr);
    align-items: center;
    gap: 18px;
    padding: 14px 0 14px 36px;
  }

  .page-home .timeline__marker {
    top: 50%;
    transform: translateY(-50%);
  }

  .page-home .timeline__links {
    justify-content: flex-end;
  }
}

@media (min-width: 900px) {
  .page-home .home-hero__grid {
    grid-template-columns: 55fr 45fr;
    align-items: center;
    min-height: 78vh;
    gap: clamp(32px, 4vw, 64px);
  }

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

  .page-home .update-bar__inner {
    grid-template-columns: minmax(240px, 1.1fr) minmax(0, 1.6fr) minmax(200px, 0.9fr);
  }

  .page-home .revisit__grid {
    grid-template-columns: 1.15fr 1fr 1fr;
    align-items: stretch;
  }
}

@media (min-width: 1080px) {
  .page-home .entry-points__grid {
    grid-template-columns: 1.45fr 1fr 1.25fr 0.85fr;
    gap: 16px;
  }

  .page-home .entry-card--award {
    min-height: 400px;
  }

  .page-home .entry-card--table {
    min-height: 300px;
  }

  .page-home .entry-card--map {
    min-height: 430px;
  }

  .page-home .entry-card--guide {
    min-height: 250px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .page-home .entry-card,
  .page-home .timeline__marker,
  .page-home .timeline__links a {
    transition: none;
  }

  .page-home .entry-card:hover,
  .page-home .entry-card:focus-visible {
    transform: none;
  }
}
