/* ================= page-home ================= */
.page-home {
  --home-gap: clamp(20px, 3vw, 44px);
  --home-pad: clamp(52px, 7vw, 106px);
  background: var(--void);
  color: var(--ink);
}

/* ---------- 上下文提示条 ---------- */
.page-home .home-context {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 16px;
  padding-top: clamp(22px, 3vw, 40px);
}
.page-home .home-context__text {
  font-size: 13px;
  letter-spacing: .05em;
  color: var(--muted);
}

/* ---------- 首屏 ---------- */
.page-home .home-hero {
  position: relative;
  padding: clamp(28px, 4.5vw, 58px) 0 var(--home-pad);
  overflow: hidden;
}
.page-home .home-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(to right, var(--line) 0 1px, transparent 1px 118px),
    repeating-linear-gradient(to bottom, var(--line) 0 1px, transparent 1px 118px);
  opacity: .32;
  pointer-events: none;
  -webkit-mask-image: linear-gradient(180deg, #000 0%, rgba(0, 0, 0, .3) 62%, transparent 100%);
          mask-image: linear-gradient(180deg, #000 0%, rgba(0, 0, 0, .3) 62%, transparent 100%);
}
.page-home .home-hero::after {
  content: "";
  position: absolute;
  top: -14%;
  right: -10%;
  width: min(72%, 880px);
  aspect-ratio: 1 / 1;
  background: radial-gradient(circle at 55% 45%, rgba(110, 59, 255, .4), rgba(110, 59, 255, 0) 64%);
  pointer-events: none;
}

.page-home .home-hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  gap: clamp(30px, 4vw, 52px);
  align-items: end;
}
@media (min-width: 900px) {
  .page-home .home-hero__inner {
    grid-template-columns: minmax(0, 55fr) minmax(0, 45fr);
    gap: clamp(32px, 4vw, 64px);
  }
}

.page-home .home-hero__kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 16px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: .2em;
  color: var(--violet-soft);
}
.page-home .home-hero__kicker::before {
  content: "";
  width: 28px;
  height: 2px;
  background: linear-gradient(90deg, var(--violet), var(--cyan));
}

.page-home .home-hero__title {
  margin: 0 0 20px;
  font-family: var(--font-sans);
  font-weight: 900;
  font-size: clamp(30px, 6vw, 62px);
  line-height: 1.1;
  letter-spacing: -.015em;
  color: var(--ink);
}
.page-home .home-hero__title-accent {
  display: block;
  background: linear-gradient(100deg, var(--violet-soft), var(--cyan));
  -webkit-background-clip: text;
          background-clip: text;
  color: transparent;
}

.page-home .home-hero__lead {
  margin: 0 0 26px;
  max-width: 46ch;
  font-size: clamp(15px, 1.5vw, 17px);
  line-height: 1.82;
  color: var(--muted);
}

.page-home .home-hero__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 30px;
  padding: 0;
  list-style: none;
}
.page-home .home-hero__tags li {
  padding: 9px 15px;
  border: 1px solid var(--line);
  border-left: 3px solid var(--violet);
  background: rgba(26, 31, 77, .55);
  font-size: 13px;
  letter-spacing: .03em;
  color: var(--ink);
}
.page-home .home-hero__tags li:nth-child(2) { border-left-color: var(--cyan); }
.page-home .home-hero__tags li:nth-child(3) { border-left-color: var(--gold); }

.page-home .home-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.page-home .home-hero__visual {
  position: relative;
  margin: 0;
}
.page-home .home-hero__visual .figure__frame {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--panel);
  box-shadow: 14px 14px 0 rgba(11, 16, 48, .9);
}
.page-home .home-hero__visual img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.page-home .home-hero__scale {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 32px;
  display: block;
  opacity: .85;
}
.page-home .home-hero__visual::after {
  content: "TRIAL 2025";
  position: absolute;
  top: -12px;
  right: 0;
  padding: 6px 12px;
  background: var(--paper);
  color: var(--print);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .18em;
  border: 1px solid var(--print);
  transform: rotate(-3deg);
  box-shadow: 4px 4px 0 rgba(16, 16, 20, .35);
}
.page-home .home-hero__visual .figure__cap {
  margin-top: 12px;
  font-size: 12px;
  letter-spacing: .06em;
  color: var(--muted);
}

/* ---------- 三步上手 ---------- */
.page-home .home-steps {
  padding: var(--home-pad) 0;
  border-top: 1px solid var(--line);
}

.page-home .home-steps__list {
  margin: clamp(28px, 4vw, 48px) 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: clamp(18px, 2.6vw, 28px);
}

.page-home .home-step {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: clamp(14px, 2vw, 24px);
  padding: clamp(20px, 2.6vw, 30px);
  border: 1px solid var(--line);
  border-left: 3px solid var(--violet);
  background: linear-gradient(150deg, rgba(11, 16, 48, .85), rgba(5, 6, 14, .55));
}
.page-home .home-step:nth-child(2) { border-left-color: var(--cyan); }
.page-home .home-step:nth-child(3) { border-left-color: var(--gold); }

.page-home .home-step__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  flex: none;
  background: var(--violet);
  color: var(--ink);
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 700;
  line-height: 1;
}
.page-home .home-step:nth-child(2) .home-step__num { background: #0E7C77; }
.page-home .home-step:nth-child(3) .home-step__num { background: #A8761B; color: #100E06; }

.page-home .home-step__title {
  margin: 0 0 8px;
  font-size: clamp(17px, 1.8vw, 21px);
  font-weight: 700;
  color: var(--ink);
}
.page-home .home-step__text {
  margin: 0 0 12px;
  max-width: 62ch;
  font-size: 15px;
  line-height: 1.78;
  color: var(--muted);
}
.page-home .home-step__outcome {
  margin: 0;
  padding-left: 14px;
  border-left: 2px solid var(--cyan);
  font-size: 13px;
  letter-spacing: .04em;
  color: var(--cyan);
}
.page-home .home-step:nth-child(3) .home-step__outcome {
  border-left-color: var(--gold);
  color: var(--gold);
}

.page-home .home-step--media .home-step__figure {
  grid-column: 1 / -1;
  margin: 0;
}
.page-home .home-step__figure .figure__frame {
  border: 1px solid var(--line);
  background: var(--panel);
  overflow: hidden;
}
.page-home .home-step__figure img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}
@media (min-width: 900px) {
  .page-home .home-step--media {
    grid-template-columns: auto minmax(0, 1fr) minmax(0, .95fr);
    align-items: start;
  }
  .page-home .home-step--media .home-step__figure {
    grid-column: auto;
    align-self: stretch;
  }
}

/* ---------- 数据速览 ---------- */
.page-home .home-snapshot {
  padding: var(--home-pad) 0;
  background: linear-gradient(180deg, rgba(11, 16, 48, .7) 0%, rgba(5, 6, 14, 0) 100%);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.page-home .home-snapshot__inner {
  display: grid;
  gap: clamp(28px, 4vw, 52px);
}
@media (min-width: 900px) {
  .page-home .home-snapshot__inner {
    grid-template-columns: minmax(0, 1fr) minmax(0, .92fr);
    align-items: center;
  }
}

.page-home .home-snapshot__stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(132px, 1fr));
  gap: 16px;
  margin: 26px 0 28px;
}
.page-home .home-snapshot__stats .stat {
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-top: 2px solid var(--violet);
  background: rgba(26, 31, 77, .5);
}
.page-home .home-snapshot__stats .stat:nth-child(2) { border-top-color: var(--cyan); }
.page-home .home-snapshot__stats .stat:nth-child(3) { border-top-color: var(--gold); }
.page-home .home-snapshot__stats .stat__value {
  display: block;
  font-family: var(--font-sans);
  font-weight: 900;
  font-size: clamp(24px, 3.2vw, 34px);
  line-height: 1.1;
  color: var(--ink);
}
.page-home .home-snapshot__stats .stat__label {
  display: block;
  margin-top: 6px;
  font-size: 12px;
  letter-spacing: .06em;
  color: var(--muted);
}

.page-home .home-bands__track {
  display: flex;
  gap: 5px;
  height: 46px;
}
.page-home .home-bands__seg {
  flex: 1 1 0;
  min-width: 0;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(110, 59, 255, .4), rgba(110, 59, 255, .05));
}
.page-home .home-bands__seg:nth-child(3) {
  background: linear-gradient(180deg, rgba(23, 229, 216, .5), rgba(23, 229, 216, .07));
  border-color: rgba(23, 229, 216, .55);
}
.page-home .home-bands__seg:nth-child(5) {
  background: linear-gradient(180deg, rgba(242, 184, 75, .55), rgba(242, 184, 75, .08));
  border-color: rgba(242, 184, 75, .6);
}
.page-home .home-bands__axis {
  display: flex;
  justify-content: space-between;
  margin-top: 8px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .12em;
  color: var(--muted);
}
.page-home .home-snapshot__hint {
  margin: 16px 0 0;
  font-size: 13px;
  line-height: 1.7;
  color: var(--muted);
}

.page-home .home-snapshot__figure {
  margin: 0;
}
.page-home .home-snapshot__figure .figure__frame {
  border: 1px solid var(--line);
  background: var(--panel);
  overflow: hidden;
  box-shadow: -12px 12px 0 rgba(110, 59, 255, .14);
}
.page-home .home-snapshot__figure img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}
.page-home .home-snapshot__figure .figure__cap {
  margin-top: 12px;
  font-size: 12px;
  letter-spacing: .06em;
  color: var(--muted);
}

/* ---------- 派彩指引 ---------- */
.page-home .home-guide {
  padding: var(--home-pad) 0;
}

.page-home .home-guide__layout {
  display: grid;
  gap: clamp(28px, 4vw, 52px);
  margin-top: clamp(26px, 4vw, 46px);
}
@media (min-width: 900px) {
  .page-home .home-guide__layout {
    grid-template-columns: minmax(0, .62fr) minmax(0, 1.38fr);
    align-items: start;
  }
}

.page-home .home-guide__figure {
  margin: 0;
}
.page-home .home-guide__figure .figure__frame {
  border: 1px solid var(--print);
  background: var(--panel);
  overflow: hidden;
  box-shadow: 12px 12px 0 rgba(242, 184, 75, .16);
}
.page-home .home-guide__figure img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}
.page-home .home-guide__figure .figure__cap {
  margin-top: 14px;
  padding: 6px 12px;
  display: inline-block;
  background: var(--paper);
  color: var(--print);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .12em;
  border: 1px solid var(--print);
}

.page-home .home-guide__index {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}
.page-home .home-guide__index .index-list__item {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr) auto;
  gap: 12px;
  align-items: baseline;
  padding: 13px 6px;
  border-bottom: 1px dashed var(--line);
  transition: background var(--dur) var(--ease);
}
.page-home .home-guide__index .index-list__item:hover {
  background: rgba(110, 59, 255, .09);
}
.page-home .home-guide__index .index-list__num {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: .1em;
  color: var(--gold);
}
.page-home .home-guide__index .index-list__body {
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink);
  text-decoration: none;
}
.page-home .home-guide__index .index-list__body:hover {
  color: var(--violet-soft);
}
.page-home .home-guide__index .index-list__meta {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .08em;
  color: var(--muted);
  white-space: nowrap;
}
@media (max-width: 640px) {
  .page-home .home-guide__index .index-list__item {
    grid-template-columns: 32px minmax(0, 1fr);
    gap: 8px 12px;
  }
  .page-home .home-guide__index .index-list__meta {
    grid-column: 2;
    font-size: 10px;
  }
}
@media (min-width: 1120px) {
  .page-home .home-guide__index {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: clamp(24px, 4vw, 56px);
  }
}

/* ---------- 按需分流 ---------- */
.page-home .home-routes {
  padding: var(--home-pad) 0;
  border-top: 1px solid var(--line);
}

.page-home .home-routes__grid {
  display: grid;
  gap: clamp(20px, 3vw, 32px);
  margin-top: clamp(28px, 4vw, 50px);
}
@media (min-width: 780px) {
  .page-home .home-routes__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: start;
  }
  .page-home .home-route:nth-child(2) { margin-top: -26px; }
  .page-home .home-route:nth-child(3) { margin-top: 22px; }
}

.page-home .home-route {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: clamp(22px, 2.6vw, 30px);
  border: 1px solid var(--line);
  background: linear-gradient(160deg, rgba(26, 31, 77, .92), rgba(11, 16, 48, .92));
  box-shadow: 10px 10px 0 rgba(5, 6, 14, .9);
}
.page-home .home-route::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 64px;
  height: 3px;
  background: var(--violet);
}
.page-home .home-route:nth-child(2)::before { background: var(--cyan); }
.page-home .home-route:nth-child(3)::before { background: var(--gold); }

.page-home .home-route .card__title {
  margin: 0;
  font-size: clamp(17px, 1.9vw, 21px);
  font-weight: 700;
  line-height: 1.4;
  color: var(--ink);
}
.page-home .home-route .card__text {
  margin: 0;
  font-size: 14.5px;
  line-height: 1.78;
  color: var(--muted);
}
.page-home .home-route .btn {
  align-self: flex-start;
  margin-top: auto;
}

.page-home .home-routes__foot {
  margin: clamp(30px, 4vw, 54px) 0 0;
  font-size: 14px;
  color: var(--muted);
}
.page-home .home-routes__foot a {
  color: var(--violet-soft);
  text-decoration: none;
  border-bottom: 1px solid currentColor;
}
.page-home .home-routes__foot a:hover {
  color: var(--cyan);
}
<<<END>>>
