.page-home {
  --home-hair: rgba(243, 239, 230, 0.14);
  --home-hair-dark: rgba(18, 16, 20, 0.16);
  --home-shadow-dark: 8px 8px 0 0 rgba(255, 90, 31, 0.32);
  --home-shadow-light: 8px 8px 0 0 var(--hx-ink);
  background: var(--hx-ink);
  color: var(--hx-white);
  position: relative;
}

.page-home .home-inline-link {
  color: inherit;
  text-decoration: underline;
  text-decoration-color: var(--hx-orange);
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.page-home .home-inline-link:hover {
  color: var(--hx-orange);
}

/* ---------- 顶部上下文条 ---------- */

.page-home .home-context {
  border-bottom: 1px solid var(--home-hair);
  background: var(--hx-ink);
}

.page-home .home-context__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: var(--gap-s);
  padding-top: 14px;
  padding-bottom: 14px;
}

.page-home .home-context__status {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0;
}

.page-home .home-context__time {
  font-size: 0.76rem;
  letter-spacing: 0.04em;
  color: var(--hx-gray);
}

/* ---------- 分屏骨架 ---------- */

.page-home .home-hero__grid {
  display: grid;
  gap: clamp(32px, 4.5vw, 64px);
  grid-template-columns: minmax(0, 1fr);
}

@media (min-width: 961px) {
  .page-home .home-hero__grid {
    grid-template-columns: minmax(0, 5fr) minmax(0, 11fr);
    align-items: start;
  }
}

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

@media (min-width: 961px) {
  .page-home .home-rail {
    position: sticky;
    top: calc(var(--header-h) + 28px);
    align-self: start;
  }
}

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

.page-home .home-hero {
  padding: clamp(28px, 4vw, 56px) 0 clamp(40px, 6vw, 80px);
  background:
    radial-gradient(115% 85% at 88% -12%, rgba(255, 90, 31, 0.24), transparent 62%),
    radial-gradient(85% 70% at -5% 105%, rgba(31, 224, 176, 0.12), transparent 66%),
    var(--hx-ink);
}

.page-home .home-hero__title {
  margin: 14px 0 18px;
  font-size: var(--fs-xl);
  line-height: 1.24;
  letter-spacing: -0.01em;
}

.page-home .home-hero__lede {
  margin: 0 0 24px;
  max-width: var(--measure);
  color: rgba(243, 239, 230, 0.82);
}

.page-home .home-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--gap-s);
  margin-bottom: 28px;
}

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

.page-home .home-facts__item {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 14px 12px;
  background: rgba(243, 239, 230, 0.04);
}

.page-home .home-facts__num {
  font-size: 1.6rem;
  line-height: 1;
  color: var(--hx-orange);
}

.page-home .home-facts__label {
  font-size: 0.76rem;
  line-height: 1.5;
  color: var(--hx-gray);
}

.page-home .home-toc {
  border-top: 1px solid var(--home-hair);
  padding-top: 18px;
}

.page-home .home-toc__label {
  margin: 0 0 10px;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  color: var(--hx-gray);
}

.page-home .home-toc__list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.page-home .home-toc__link {
  display: inline-block;
  padding-bottom: 3px;
  font-size: 0.86rem;
  color: rgba(243, 239, 230, 0.72);
  text-decoration: none;
  border-bottom: 2px solid transparent;
  transition: color 200ms ease-out, border-color 200ms ease-out;
}

.page-home .home-toc__link:hover,
.page-home .home-toc__link:focus-visible,
.page-home .home-toc__link.is-active {
  color: var(--hx-orange);
  border-bottom-color: var(--hx-orange);
}

/* ---------- 拼贴首屏 ---------- */

.page-home .home-collage {
  display: grid;
  gap: var(--gap);
  grid-template-columns: minmax(0, 1fr);
  min-width: 0;
}

@media (min-width: 641px) {
  .page-home .home-collage {
    grid-template-columns: repeat(6, minmax(0, 1fr));
    grid-template-rows: auto auto auto;
    grid-template-areas:
      "main main main main side side"
      "main main main main side side"
      "stA  stA  stB  stB  side side";
  }

  .page-home .collage-main { grid-area: main; }
  .page-home .collage-side { grid-area: side; }
  .page-home .collage-strip--a { grid-area: stA; }
  .page-home .collage-strip--b { grid-area: stB; }
}

.page-home .home-panel {
  position: relative;
  display: block;
  min-width: 0;
  padding: clamp(18px, 2.2vw, 26px);
  border: var(--bd) solid var(--hx-orange);
  border-radius: var(--radius);
  background: rgba(243, 239, 230, 0.045);
  color: inherit;
  text-decoration: none;
  transition: transform 200ms ease-out, box-shadow 200ms ease-out, border-color 200ms ease-out;
}

.page-home .home-panel--dark {
  box-shadow: var(--home-shadow-dark);
}

.page-home .home-panel--dark:hover,
.page-home .home-panel--dark:focus-visible {
  transform: translate(-3px, -3px);
  border-color: var(--hx-mint);
  box-shadow: 12px 12px 0 0 rgba(31, 224, 176, 0.34);
}

.page-home .collage-main {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.page-home .collage-main__media {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
}

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

.page-home .collage-main__title {
  margin: 12px 0 8px;
  font-size: var(--fs-l);
  line-height: 1.3;
  font-weight: 800;
  letter-spacing: -0.01em;
}

.page-home .collage-main__text {
  margin: 0;
  max-width: 32em;
  font-size: 0.92rem;
  line-height: 1.8;
  color: rgba(243, 239, 230, 0.78);
}

.page-home .collage-side {
  display: flex;
  flex-direction: column;
  gap: 14px;
  border-color: var(--hx-red);
  background: linear-gradient(170deg, rgba(179, 21, 31, 0.28), rgba(18, 16, 20, 0.6));
}

.page-home .collage-side__title {
  margin: 0;
  font-size: var(--fs-m);
  font-weight: 800;
  letter-spacing: -0.01em;
}

.page-home .collage-side__text {
  margin: 0;
  font-size: 0.86rem;
  line-height: 1.75;
  color: rgba(243, 239, 230, 0.74);
}

.page-home .collage-side__list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 0;
  padding: 14px 0;
  list-style: none;
  border-top: 1px solid var(--home-hair);
  border-bottom: 1px solid var(--home-hair);
}

.page-home .collage-side__item {
  display: flex;
  gap: 10px;
  align-items: baseline;
  font-size: 0.86rem;
  line-height: 1.6;
  color: rgba(243, 239, 230, 0.9);
}

.page-home .collage-side__idx {
  flex: none;
  font-size: 0.72rem;
  color: var(--hx-mint);
}

.page-home .collage-side .btn {
  align-self: flex-start;
  margin-top: auto;
}

.page-home .collage-strip {
  display: flex;
  flex-direction: column;
  gap: 6px;
  justify-content: center;
}

.page-home .collage-strip__kicker {
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  color: var(--hx-mint);
}

.page-home .collage-strip__title {
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: -0.01em;
}

.page-home .collage-strip__meta {
  font-size: 0.78rem;
  line-height: 1.6;
  color: rgba(243, 239, 230, 0.66);
}

.page-home .collage-strip--b {
  border-color: var(--hx-mint);
}

/* ---------- 时间线 ---------- */

.page-home .home-timeline {
  padding: clamp(48px, 6vw, 88px) 0;
  border-top: var(--bd) solid var(--hx-mint);
  border-bottom: var(--bd) solid var(--hx-mint);
}

.page-home .home-timeline__title {
  margin: 14px 0 16px;
}

.page-home .home-timeline__lede {
  margin: 0 0 22px;
  max-width: var(--measure);
  line-height: 1.8;
  color: rgba(243, 239, 230, 0.8);
}

.page-home .home-timeline__body {
  display: flex;
  flex-direction: column;
  gap: clamp(24px, 3vw, 36px);
  min-width: 0;
}

.page-home .home-timeline__figure {
  margin: 0;
  border: var(--bd) solid var(--hx-mint);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 8px 8px 0 0 rgba(31, 224, 176, 0.28);
}

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

.page-home .home-timeline__figure .media__caption {
  padding: 10px 14px;
  font-size: 0.74rem;
  color: rgba(243, 239, 230, 0.66);
}

.page-home .home-timeline__list {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 0;
  padding: 0 0 0 26px;
  list-style: none;
}

.page-home .home-timeline__list::before {
  content: "";
  position: absolute;
  left: 6px;
  top: 6px;
  bottom: 6px;
  width: 2px;
  background: linear-gradient(180deg, var(--hx-mint), var(--hx-orange) 70%, var(--hx-red));
}

.page-home .home-tl-node {
  position: relative;
  padding: 16px 18px;
  border: var(--bd) solid rgba(31, 224, 176, 0.4);
  border-radius: var(--radius);
  background: rgba(18, 16, 20, 0.45);
}

.page-home .home-tl-node::before {
  content: "";
  position: absolute;
  left: -26px;
  top: 24px;
  width: 12px;
  height: 12px;
  background: var(--hx-mint);
  transform: rotate(45deg);
  box-shadow: 0 0 0 3px var(--hx-teal);
}

.page-home .home-tl-node__when {
  margin: 0 0 6px;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  color: var(--hx-mint);
}

.page-home .home-tl-node__title {
  margin: 0 0 8px;
  font-size: 1.05rem;
  font-weight: 800;
  line-height: 1.4;
}

.page-home .home-tl-node__text {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.8;
  color: rgba(243, 239, 230, 0.78);
}

.page-home .home-chip {
  display: inline-block;
  margin-top: 12px;
  padding: 4px 10px;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.04em;
  color: var(--hx-ink);
  background: var(--hx-orange);
  border-radius: var(--radius);
}

.page-home .home-chip--mint {
  background: var(--hx-mint);
}

/* ---------- 赛区分栏 ---------- */

.page-home .home-zones {
  padding: clamp(48px, 6vw, 88px) 0;
  border-bottom: var(--bd) solid var(--hx-red);
}

.page-home .home-zones__grid {
  display: grid;
  gap: clamp(28px, 4vw, 56px);
  grid-template-columns: minmax(0, 1fr);
}

@media (min-width: 961px) {
  .page-home .home-zones__grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.4fr);
    align-items: start;
  }
}

.page-home .home-zones__title {
  margin: 14px 0 16px;
}

.page-home .home-zones__lede {
  margin: 0 0 22px;
  max-width: 30em;
  line-height: 1.8;
  color: rgba(243, 239, 230, 0.8);
}

.page-home .home-zones__figure {
  margin: 0;
  border: var(--bd) solid var(--hx-cream);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 8px 8px 0 0 rgba(243, 239, 230, 0.22);
}

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

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

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

.page-home .home-zone-card {
  padding: clamp(18px, 2.2vw, 26px);
  border: var(--bd) solid rgba(243, 239, 230, 0.26);
  border-radius: var(--radius);
  background: rgba(18, 16, 20, 0.38);
  transition: transform 200ms ease-out, border-color 200ms ease-out, box-shadow 200ms ease-out;
}

.page-home .home-zone-card:hover {
  transform: translate(-3px, -3px);
  border-color: var(--hx-orange);
  box-shadow: 10px 10px 0 0 rgba(255, 90, 31, 0.32);
}

.page-home .home-zone-card:nth-child(2n) {
  margin-top: 0;
}

@media (min-width: 641px) {
  .page-home .home-zone-card:nth-child(1) { transform: translateY(0); }
  .page-home .home-zone-card:nth-child(2) { transform: translateY(18px); }
  .page-home .home-zone-card:nth-child(3) { transform: translateY(-10px); }
  .page-home .home-zone-card:nth-child(4) { transform: translateY(10px); }

  .page-home .home-zone-card:hover {
    transform: translate(-3px, -3px);
  }
}

.page-home .home-zone-card__idx {
  margin: 0 0 10px;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  color: var(--hx-orange);
}

.page-home .home-zone-card__name {
  margin: 0 0 6px;
  font-size: 1.08rem;
  font-weight: 800;
  letter-spacing: -0.01em;
}

.page-home .home-zone-card__focus {
  margin: 0 0 12px;
  padding-bottom: 12px;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  color: var(--hx-mint);
  border-bottom: 1px solid var(--home-hair);
}

.page-home .home-zone-card__text {
  margin: 0;
  font-size: 0.86rem;
  line-height: 1.8;
  color: rgba(243, 239, 230, 0.8);
}

/* ---------- 四档速读 ---------- */

.page-home .home-scales {
  padding: clamp(48px, 6vw, 88px) 0;
  color: var(--hx-ink);
}

.page-home .home-scales__head {
  max-width: 46em;
  margin-bottom: clamp(28px, 4vw, 48px);
}

.page-home .home-scales .eyebrow {
  color: var(--hx-red);
}

.page-home .home-scales__title {
  margin: 14px 0 16px;
}

.page-home .home-scales__lede {
  margin: 0;
  line-height: 1.8;
  color: rgba(18, 16, 20, 0.74);
}

.page-home .home-scales__body {
  display: grid;
  gap: clamp(24px, 3.5vw, 48px);
  grid-template-columns: minmax(0, 1fr);
}

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

.page-home .home-scale {
  padding: clamp(18px, 2.4vw, 28px);
  border: var(--bd) solid var(--hx-ink);
  border-radius: var(--radius);
  background: var(--hx-white);
  box-shadow: var(--home-shadow-light);
}

.page-home .home-scale--away {
  border-color: var(--hx-red);
  box-shadow: 8px 8px 0 0 var(--hx-red);
}

.page-home .home-scale__head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  padding-bottom: 14px;
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  border-bottom: var(--bd) solid var(--hx-ink);
}

.page-home .home-scale__tag {
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  color: var(--hx-white);
  background: var(--hx-ink);
  padding: 4px 8px;
  border-radius: var(--radius);
}

.page-home .home-scale--away .home-scale__tag {
  background: var(--hx-red);
}

.page-home .home-scale__list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.page-home .home-scale__item {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  grid-template-areas:
    "bar name"
    "bar desc";
  column-gap: 14px;
  row-gap: 4px;
  align-items: center;
}

.page-home .home-scale__bar {
  grid-area: bar;
  align-self: stretch;
  min-height: 34px;
  border-radius: var(--radius);
  background: linear-gradient(180deg, var(--hx-orange), var(--hx-red));
}

.page-home .home-scale__bar--1 { opacity: 1; }
.page-home .home-scale__bar--2 { opacity: 0.78; }
.page-home .home-scale__bar--3 { opacity: 0.56; }
.page-home .home-scale__bar--4 { opacity: 0.34; }

.page-home .home-scale--away .home-scale__bar {
  background: linear-gradient(180deg, var(--hx-teal), var(--hx-indigo));
}

.page-home .home-scale__name {
  grid-area: name;
  font-size: 0.96rem;
  font-weight: 800;
  letter-spacing: -0.01em;
}

.page-home .home-scale__desc {
  grid-area: desc;
  font-size: 0.82rem;
  line-height: 1.7;
  color: rgba(18, 16, 20, 0.7);
}

.page-home .home-scales__foot {
  margin: clamp(24px, 3vw, 36px) 0 0;
  font-size: 0.88rem;
  line-height: 1.8;
  color: rgba(18, 16, 20, 0.74);
}

/* ---------- 资料库 ---------- */

.page-home .home-library {
  padding: clamp(48px, 6vw, 88px) 0;
  border-top: var(--bd) solid var(--hx-orange);
}

.page-home .home-library__title {
  margin: 14px 0 16px;
}

.page-home .home-library__lede {
  margin: 0 0 20px;
  max-width: var(--measure);
  line-height: 1.8;
  color: rgba(243, 239, 230, 0.82);
}

.page-home .home-library__points {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 0 0 24px;
  padding: 0;
  list-style: none;
}

.page-home .home-library__points li {
  position: relative;
  padding-left: 18px;
  font-size: 0.88rem;
  line-height: 1.75;
  color: rgba(243, 239, 230, 0.82);
}

.page-home .home-library__points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 8px;
  height: 8px;
  background: var(--hx-mint);
  transform: rotate(45deg);
}

.page-home .home-library__body {
  display: flex;
  flex-direction: column;
  gap: var(--gap);
  min-width: 0;
}

.page-home .home-library__figure {
  margin: 0;
  border: var(--bd) solid var(--hx-orange);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 8px 8px 0 0 rgba(255, 90, 31, 0.3);
}

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

.page-home .home-library__filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

/* ---------- 全站app ---------- */

.page-home .home-app {
  padding: clamp(48px, 6vw, 88px) 0;
  border-top: var(--bd) solid var(--hx-orange);
  border-bottom: var(--bd) solid var(--hx-red);
}

.page-home .home-app__head {
  max-width: 46em;
  margin-bottom: clamp(28px, 4vw, 44px);
}

.page-home .home-app__title {
  margin: 14px 0 16px;
}

.page-home .home-app__lede {
  margin: 0;
  line-height: 1.8;
  color: rgba(243, 239, 230, 0.8);
}

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

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

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

.page-home .home-app__card {
  padding: clamp(16px, 2vw, 22px);
  border-top: 4px solid var(--hx-orange);
  border-radius: var(--radius);
  background: rgba(243, 239, 230, 0.05);
  transition: background 200ms ease-out, border-color 200ms ease-out;
}

.page-home .home-app__card:hover {
  background: rgba(243, 239, 230, 0.09);
  border-top-color: var(--hx-mint);
}

.page-home .home-app__idx {
  display: block;
  margin-bottom: 12px;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  color: var(--hx-mint);
}

.page-home .home-app__card-title {
  margin: 0 0 8px;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: -0.01em;
}

.page-home .home-app__card-text {
  margin: 0;
  font-size: 0.84rem;
  line-height: 1.75;
  color: rgba(243, 239, 230, 0.76);
}

.page-home .home-app__foot {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: var(--gap-s);
  margin-top: clamp(24px, 3vw, 36px);
  padding-top: 20px;
  border-top: 1px solid var(--home-hair);
}

.page-home .home-app__version {
  margin: 0;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  color: var(--hx-gray);
}

/* ---------- 节奏与团队 ---------- */

.page-home .home-rhythm {
  padding: clamp(48px, 6vw, 88px) 0;
  color: var(--hx-ink);
}

.page-home .home-rhythm .eyebrow {
  color: var(--hx-red);
}

.page-home .home-rhythm__head {
  max-width: 46em;
  margin-bottom: clamp(28px, 4vw, 44px);
}

.page-home .home-rhythm__title {
  margin: 14px 0 16px;
}

.page-home .home-rhythm__lede {
  margin: 0;
  line-height: 1.8;
  color: rgba(18, 16, 20, 0.74);
}

.page-home .home-steps {
  display: grid;
  gap: var(--gap);
  grid-template-columns: minmax(0, 1fr);
  margin: 0 0 clamp(28px, 4vw, 44px);
  padding: 0;
  list-style: none;
  counter-reset: step;
}

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

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

.page-home .home-steps__item {
  position: relative;
  padding: 20px 18px 22px;
  border: var(--bd) solid var(--hx-ink);
  border-radius: var(--radius);
  background: var(--hx-white);
}

.page-home .home-steps__item::after {
  content: "";
  position: absolute;
  right: -2px;
  top: 50%;
  width: 10px;
  height: 10px;
  background: var(--hx-orange);
  transform: translate(50%, -50%) rotate(45deg);
  opacity: 0;
}

@media (min-width: 1001px) {
  .page-home .home-steps__item:not(:last-child)::after {
    opacity: 1;
  }
}

.page-home .home-steps__idx {
  display: block;
  margin-bottom: 10px;
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  color: var(--hx-red);
}

.page-home .home-steps__name {
  margin: 0 0 8px;
  font-size: 1rem;
  font-weight: 800;
}

.page-home .home-steps__text {
  margin: 0;
  font-size: 0.83rem;
  line-height: 1.75;
  color: rgba(18, 16, 20, 0.72);
}

.page-home .home-rhythm__team {
  display: grid;
  gap: var(--gap);
  grid-template-columns: minmax(0, 1fr);
  padding: clamp(20px, 2.6vw, 30px);
  border: var(--bd) solid var(--hx-ink);
  border-radius: var(--radius);
  background: var(--hx-cream);
  box-shadow: var(--home-shadow-light);
}

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

.page-home .home-rhythm__team-label {
  margin: 0 0 12px;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  color: var(--hx-red);
}

.page-home .home-rhythm__team-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 0.88rem;
  line-height: 1.7;
}

.page-home .home-rhythm__team-text {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.8;
  color: rgba(18, 16, 20, 0.78);
}

.page-home .home-rhythm .num {
  color: var(--hx-red);
  font-weight: 700;
}

.page-home .home-rhythm__foot {
  margin: 22px 0 0;
  font-size: 0.88rem;
  line-height: 1.8;
  color: rgba(18, 16, 20, 0.74);
}

/* ---------- 下一步分流 ---------- */

.page-home .home-next {
  padding: clamp(44px, 5.5vw, 76px) 0 clamp(56px, 7vw, 96px);
  background:
    radial-gradient(90% 80% at 10% 0%, rgba(255, 90, 31, 0.18), transparent 62%),
    radial-gradient(80% 70% at 92% 100%, rgba(31, 224, 176, 0.12), transparent 66%),
    var(--hx-ink);
}

.page-home .home-next__title {
  margin: 0 0 clamp(22px, 3vw, 34px);
}

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

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

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

.page-home .home-next__link {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: clamp(18px, 2.2vw, 24px);
  border: var(--bd) solid rgba(243, 239, 230, 0.24);
  border-radius: var(--radius);
  background: rgba(243, 239, 230, 0.045);
  color: var(--hx-white);
  text-decoration: none;
  transition: transform 200ms ease-out, border-color 200ms ease-out, box-shadow 200ms ease-out;
}

.page-home .home-next__link:hover,
.page-home .home-next__link:focus-visible {
  transform: translate(-3px, -3px);
  border-color: var(--hx-orange);
  box-shadow: 10px 10px 0 0 rgba(255, 90, 31, 0.34);
}

.page-home .home-next__kicker {
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  color: var(--hx-mint);
}

.page-home .home-next__label {
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: -0.01em;
}

.page-home .home-next__desc {
  font-size: 0.8rem;
  line-height: 1.65;
  color: rgba(243, 239, 230, 0.66);
}

.page-home .home-next__link--column { border-top: 4px solid var(--hx-orange); }
.page-home .home-next__link--apps { border-top: 4px solid var(--hx-mint); }
.page-home .home-next__link--answers { border-top: 4px solid var(--hx-cream); }
.page-home .home-next__link--inquiry { border-top: 4px solid var(--hx-red); }

/* ---------- 返回顶部 ---------- */

.page-home .to-top {
  position: fixed;
  right: clamp(14px, 3vw, 32px);
  bottom: clamp(14px, 3vw, 32px);
  z-index: 40;
  padding: 10px 16px;
  font-family: var(--font-mono);
  font-size: 0.74rem;
  letter-spacing: 0.06em;
  color: var(--hx-ink);
  background: var(--hx-orange);
  border: var(--bd) solid var(--hx-ink);
  border-radius: var(--radius);
  box-shadow: 6px 6px 0 0 var(--hx-ink);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 200ms ease-out, transform 200ms ease-out, visibility 200ms ease-out;
}

.page-home .to-top.is-visible,
.page-home .to-top[data-visible="true"] {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* ---------- 深色区块中文字色兜底 ---------- */

.page-home .zone--cream {
  color: var(--hx-ink);
}

.page-home .zone--cream .sec-title,
.page-home .zone--cream .eyebrow {
  color: var(--hx-ink);
}

.page-home .zone--cream .home-inline-link {
  color: var(--hx-ink);
}

.page-home .zone--cream .home-inline-link:hover {
  color: var(--hx-red);
}

/* ---------- 显现动效 ---------- */

.page-home .reveal {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 280ms ease-out, transform 280ms ease-out;
}

.page-home .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .page-home .reveal,
  .page-home .reveal.is-visible {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .page-home .home-panel,
  .page-home .home-zone-card,
  .page-home .home-next__link,
  .page-home .to-top {
    transition: none;
  }
}
<<<END>>>
