.page-home {
  position: relative;
  isolation: isolate;
  overflow-x: hidden;
  background: var(--deep);
  color: var(--paper);
}

.page-home::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image:
    repeating-radial-gradient(circle at 10% 72%, transparent 0 44px, rgba(23, 224, 200, .055) 44px 45px),
    repeating-radial-gradient(circle at 92% 8%, transparent 0 60px, rgba(47, 123, 255, .05) 60px 61px);
}

/* ---------- 位置提示条 ---------- */
.page-home .home-status {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  padding-top: 22px;
  padding-bottom: 2px;
  font-family: var(--font-mono);
  font-size: var(--fs-1);
  letter-spacing: .1em;
  color: var(--gray);
}

.page-home .home-status__now {
  color: var(--surge);
}

.page-home .home-status__sep {
  color: var(--line-strong);
}

/* ---------- 首屏拼贴 ---------- */
.page-home .home-hero {
  padding: 26px 0 52px;
}

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

.page-home .home-hero__head {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
}

.page-home .home-hero__title {
  margin: 14px 0 0;
  font-size: clamp(32px, 7.6vw, 74px);
  line-height: 1.03;
  font-weight: 900;
  letter-spacing: -.022em;
  text-wrap: balance;
}

.page-home .home-hero__accent {
  display: block;
  color: var(--surge);
}

.page-home .home-hero__lead {
  margin: 20px 0 0;
  max-width: 44ch;
  font-size: clamp(15px, 1.7vw, 17px);
  line-height: 1.75;
  color: var(--mist);
}

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

.page-home .home-hero__visual {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: var(--r-m);
  background: linear-gradient(150deg, var(--trench), var(--deep));
  box-shadow: var(--shadow-2);
  clip-path: polygon(0 14%, 94% 0, 100% 86%, 8% 100%);
}

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

.page-home .home-hero__tiles {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.page-home .home-tile {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 0;
  padding: 16px 15px 18px;
  overflow: hidden;
  border: .5px solid var(--line);
  border-radius: var(--r-m);
  background: linear-gradient(160deg, rgba(11, 42, 74, .92), rgba(6, 26, 51, .74));
  color: var(--paper);
  text-decoration: none;
  transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease;
}

.page-home .home-tile::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: var(--tile-c, var(--surge));
  transform: scaleX(.26);
  transform-origin: left center;
  transition: transform .3s ease;
}

.page-home .home-tile:hover,
.page-home .home-tile:focus-visible {
  transform: translateY(-4px);
  border-color: var(--line-strong);
  box-shadow: var(--shadow-2);
}

.page-home .home-tile:hover::after,
.page-home .home-tile:focus-visible::after {
  transform: scaleX(1);
}

.page-home .home-tile--surge { --tile-c: var(--surge); }
.page-home .home-tile--volt { --tile-c: var(--volt); }
.page-home .home-tile--jump { --tile-c: var(--jump); }
.page-home .home-tile--turf { --tile-c: var(--turf); }

.page-home .home-tile__label {
  font-family: var(--font-mono);
  font-size: var(--fs-1);
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gray);
}

.page-home .home-tile__num {
  font-family: var(--font-mono);
  font-size: clamp(30px, 4.2vw, 46px);
  font-weight: 600;
  line-height: 1;
  letter-spacing: -.03em;
  color: var(--tile-c, var(--surge));
  font-variant-numeric: tabular-nums;
}

.page-home .home-tile__unit {
  font-size: var(--fs-2);
  line-height: 1.55;
  color: var(--mist);
}

.page-home .home-tile__more {
  margin-top: auto;
  padding-top: 12px;
  font-size: var(--fs-1);
  color: var(--gray);
  transition: color .24s ease;
}

.page-home .home-tile:hover .home-tile__more,
.page-home .home-tile:focus-visible .home-tile__more {
  color: var(--tile-c, var(--surge));
}

/* ---------- 主场地图带 ---------- */
.page-home .home-map__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 28px;
  align-items: center;
}

.page-home .home-map__figure {
  margin: 0;
  overflow: hidden;
  border: .5px solid var(--line);
  border-radius: var(--r-l) var(--r-l) var(--r-l) 8px;
  box-shadow: var(--shadow-1);
  background: linear-gradient(140deg, rgba(47, 123, 255, .16), rgba(23, 224, 200, .08));
}

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

.page-home .home-map__body {
  min-width: 0;
}

.page-home .home-map__lead {
  margin: 16px 0 0;
  max-width: 60ch;
  font-size: var(--fs-3);
  line-height: 1.75;
  color: var(--mist);
}

.page-home .home-map__facts {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 10px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.page-home .home-map__facts li {
  position: relative;
  padding-left: 16px;
  font-size: var(--fs-2);
  line-height: 1.6;
  color: var(--mist);
}

.page-home .home-map__facts li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .72em;
  width: 7px;
  height: 1px;
  background: var(--surge);
}

.page-home .home-map__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}

.page-home .home-map__chip {
  padding: 6px 13px;
  border: .5px solid var(--line);
  border-radius: 999px;
  font-size: var(--fs-1);
  letter-spacing: .04em;
  color: var(--mist);
  text-decoration: none;
  transition: color .2s ease, background-color .2s ease, border-color .2s ease;
}

.page-home .home-map__chip:hover,
.page-home .home-map__chip:focus-visible {
  color: var(--deep);
  background: var(--surge);
  border-color: var(--surge);
}

.page-home .home-map .link-more {
  display: inline-block;
  margin-top: 24px;
}

/* ---------- 本轮刻度带 ---------- */
.page-home .section--paper {
  background: var(--paper);
  color: var(--deep);
}

.page-home .home-tide__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 34px;
  align-items: end;
}

.page-home .home-tide__main {
  min-width: 0;
}

.page-home .home-tide__lead {
  margin: 16px 0 0;
  max-width: 62ch;
  font-size: var(--fs-3);
  line-height: 1.75;
  color: var(--gray);
}

.page-home .home-tide__bars {
  display: flex;
  align-items: flex-end;
  gap: 9px;
  height: 230px;
  margin-top: 40px;
  padding-bottom: 2px;
  border-bottom: 1px solid rgba(6, 26, 51, .14);
}

.page-home .home-tide__bar {
  display: flex;
  flex: 1 1 0;
  flex-direction: column;
  justify-content: flex-end;
  min-width: 0;
  height: 100%;
}

.page-home .home-tide__col {
  position: relative;
  display: block;
  height: var(--h, 50%);
  border-radius: 3px 3px 0 0;
  background: linear-gradient(180deg, var(--volt), rgba(23, 224, 200, .55));
  transition: filter .22s ease;
}

.page-home .home-tide__bar:hover .home-tide__col {
  filter: brightness(1.15);
}

.page-home .home-tide__num {
  position: absolute;
  top: -24px;
  left: 0;
  right: 0;
  text-align: center;
  font-family: var(--font-mono);
  font-size: var(--fs-1);
  font-weight: 600;
  color: var(--deep);
  font-variant-numeric: tabular-nums;
}

.page-home .home-tide__label {
  margin-top: 10px;
  font-size: var(--fs-1);
  line-height: 1.4;
  text-align: center;
  color: var(--gray);
}

.page-home .home-tide__hint {
  margin: 26px 0 0;
  font-size: var(--fs-2);
  line-height: 1.7;
  color: var(--gray);
}

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

.page-home .home-tide__figure {
  margin: 0;
  overflow: hidden;
  border: .5px solid rgba(6, 26, 51, .12);
  border-radius: var(--r-l);
  box-shadow: var(--shadow-1);
}

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

/* ---------- 赛季阶段 ---------- */
.page-home .home-arc__list {
  margin: 34px 0 0;
  padding: 0;
  list-style: none;
}

.page-home .home-arc__item {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 6px;
  padding: 22px 0;
  border-top: .5px solid var(--line);
}

.page-home .home-arc__item:last-child {
  border-bottom: .5px solid var(--line);
}

.page-home .home-arc__year {
  font-family: var(--font-mono);
  font-size: var(--fs-4);
  font-weight: 600;
  letter-spacing: -.02em;
  color: var(--surge);
  font-variant-numeric: tabular-nums;
}

.page-home .home-arc__stage {
  margin: 0;
  font-size: var(--fs-4);
  font-weight: 700;
  letter-spacing: -.01em;
  color: var(--paper);
}

.page-home .home-arc__desc {
  margin: 0;
  font-size: var(--fs-2);
  line-height: 1.75;
  color: var(--mist);
}

.page-home .home-arc .link-more {
  display: inline-block;
  margin-top: 26px;
}

/* ---------- 使用者 ---------- */
.page-home .home-users__head {
  max-width: 60ch;
}

.page-home .home-users__body {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 26px;
  margin-top: 32px;
}

.page-home .home-users__figure {
  margin: 0;
  overflow: hidden;
  border: .5px solid var(--line);
  border-radius: 8px var(--r-l) var(--r-l) var(--r-l);
  box-shadow: var(--shadow-1);
}

.page-home .home-users__figure img {
  display: block;
  width: 100%;
  height: 100%;
  aspect-ratio: 10 / 7;
  object-fit: cover;
}

.page-home .home-users__list {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.page-home .home-users__item {
  padding: 18px 18px 20px;
  border: .5px solid var(--line);
  border-radius: var(--r-m);
  background: rgba(6, 26, 51, .5);
  transition: transform .24s ease, border-color .24s ease;
}

.page-home .home-users__item:hover {
  transform: translateY(-3px);
  border-color: var(--line-strong);
}

.page-home .home-users__name {
  margin: 12px 0 0;
  font-size: var(--fs-3);
  font-weight: 700;
  color: var(--paper);
}

.page-home .home-users__desc {
  margin: 8px 0 0;
  font-size: var(--fs-2);
  line-height: 1.75;
  color: var(--mist);
}

/* ---------- 咨询入口 ---------- */
.page-home .home-cta__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 30px;
  align-items: start;
}

.page-home .home-cta__lead {
  margin: 16px 0 0;
  max-width: 58ch;
  font-size: var(--fs-3);
  line-height: 1.75;
  color: var(--mist);
}

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

.page-home .home-cta__list {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: .5px solid var(--line);
}

.page-home .home-cta__item {
  padding: 20px 0;
  border-bottom: .5px solid var(--line);
}

.page-home .home-cta__name {
  margin: 0;
  font-size: var(--fs-3);
  font-weight: 700;
  color: var(--paper);
}

.page-home .home-cta__desc {
  margin: 8px 0 0;
  font-size: var(--fs-2);
  line-height: 1.7;
  color: var(--gray);
}

/* ---------- 响应式 ---------- */
@media (min-width: 600px) {
  .page-home .home-hero {
    padding: 34px 0 64px;
  }

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

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

  .page-home .home-arc__item {
    grid-template-columns: 132px minmax(0, 1fr);
    gap: 6px 24px;
    align-items: baseline;
  }

  .page-home .home-arc__desc {
    grid-column: 2 / 3;
  }
}

@media (min-width: 960px) {
  .page-home .home-status {
    padding-top: 30px;
  }

  .page-home .home-hero {
    padding: 42px 0 84px;
  }

  .page-home .home-hero__grid {
    grid-template-columns: repeat(12, minmax(0, 1fr));
    grid-template-areas:
      "head head head head head head head vis vis vis vis vis"
      "head head head head head head head vis vis vis vis vis"
      "tiles tiles tiles tiles tiles tiles tiles tiles tiles tiles tiles tiles";
    gap: 14px 20px;
  }

  .page-home .home-hero__head {
    grid-area: head;
    padding-right: 30px;
  }

  .page-home .home-hero__visual {
    grid-area: vis;
  }

  .page-home .home-hero__tiles {
    grid-area: tiles;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
    margin-top: 10px;
  }

  .page-home .home-map__inner {
    grid-template-columns: minmax(0, 1.06fr) minmax(0, 1fr);
    gap: 52px;
  }

  .page-home .home-tide__inner {
    grid-template-columns: minmax(0, 1.35fr) minmax(0, 1fr);
    gap: 56px;
  }

  .page-home .home-users__body {
    grid-template-columns: minmax(0, .82fr) minmax(0, 1.18fr);
    gap: 40px;
    align-items: start;
  }

  .page-home .home-cta__inner {
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
    gap: 64px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .page-home .home-tile,
  .page-home .home-tile::after,
  .page-home .home-tile__more,
  .page-home .home-map__chip,
  .page-home .home-tide__col,
  .page-home .home-users__item {
    transition: none;
  }

  .page-home .home-tile:hover,
  .page-home .home-tile:focus-visible,
  .page-home .home-users__item:hover {
    transform: none;
  }
}

.page-home {
  --h: 1rem;
}
