.page-home {
  background: var(--arena);
  color: var(--paper);
  overflow-x: hidden;
}

.page-home .visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

/* ============ 框景首屏 ============ */
.page-home .hero-frame {
  position: relative;
  margin-top: calc(var(--header-h) * -1);
  padding: calc(var(--header-h) + 56px) 0 64px;
  background: var(--arena);
  overflow: hidden;
}

.page-home .hero-frame__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.page-home .hero-frame__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .42;
  filter: saturate(.8) contrast(1.05);
}

.page-home .hero-frame__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(120% 80% at 78% 18%, rgba(139,92,246,.22), transparent 62%),
    radial-gradient(90% 70% at 12% 78%, rgba(200,255,60,.14), transparent 60%),
    linear-gradient(180deg, rgba(10,13,18,.55) 0%, rgba(10,13,18,.92) 62%, var(--arena) 100%);
}

.page-home .hero-frame__glow {
  position: absolute;
  top: -14%;
  right: -8%;
  width: 58vw;
  height: 58vw;
  max-width: 760px;
  max-height: 760px;
  border-radius: 50%;
  background: conic-gradient(from 210deg, rgba(200,255,60,.16), rgba(139,92,246,.24), rgba(76,29,149,.05), rgba(200,255,60,.16));
  filter: blur(70px);
  opacity: .72;
  z-index: 0;
  animation: hm-glow 7.5s ease-in-out infinite;
}

@keyframes hm-glow {
  0%, 100% { opacity: .58; transform: scale(1); }
  50% { opacity: .82; transform: scale(1.06); }
}

.page-home .hero-frame__rail {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background-image: repeating-linear-gradient(90deg, var(--neon) 0 1px, transparent 1px 36px);
  opacity: .45;
  z-index: 2;
}

.page-home .hero-frame__corners span {
  position: absolute;
  width: 22px;
  height: 22px;
  border: 0 solid var(--neon);
  opacity: .7;
  z-index: 2;
}

.page-home .hero-frame__corners span:nth-child(1) { top: 18px; left: 18px; border-top-width: 2px; border-left-width: 2px; }
.page-home .hero-frame__corners span:nth-child(2) { top: 18px; right: 18px; border-top-width: 2px; border-right-width: 2px; }
.page-home .hero-frame__corners span:nth-child(3) { bottom: 18px; left: 18px; border-bottom-width: 2px; border-left-width: 2px; }
.page-home .hero-frame__corners span:nth-child(4) { bottom: 18px; right: 18px; border-bottom-width: 2px; border-right-width: 2px; }

.page-home .hero-frame__inner {
  position: relative;
  z-index: 3;
}

.page-home .hero-frame__meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 28px;
  font-size: 12px;
  letter-spacing: .3em;
  color: rgba(242,237,227,.5);
}

.page-home .hero-frame__meta .mono {
  color: var(--neon);
  letter-spacing: .12em;
}

.page-home .hero-frame__meta-text {
  writing-mode: horizontal-tb;
}

.page-home .hero-frame__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
}

.page-home .hero-frame__title {
  margin: 0 0 20px;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(30px, 6.4vw, 56px);
  line-height: 1.16;
  letter-spacing: -.02em;
  color: var(--paper);
}

.page-home .hero-frame__lead {
  margin: 0 0 28px;
  max-width: 36em;
  font-size: 16px;
  line-height: 1.85;
  color: rgba(242,237,227,.78);
}

.page-home .hero-frame__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.page-home .hero-frame__facts {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 28px;
  margin: 32px 0 0;
  padding: 20px 0 0;
  border-top: 1px solid var(--rule);
  list-style: none;
}

.page-home .hero-frame__facts li {
  display: flex;
  align-items: baseline;
  gap: 8px;
  font-size: 13px;
  color: rgba(242,237,227,.62);
}

.page-home .hero-frame__facts .mono {
  font-size: 20px;
  font-weight: 700;
  color: var(--neon);
}

/* 榜单窗口 */
.page-home .hero-frame__window {
  position: relative;
  background: linear-gradient(160deg, rgba(20,26,34,.92), rgba(10,13,18,.96));
  border: 1px solid var(--rule);
  border-radius: 3px;
  backdrop-filter: blur(12px);
  box-shadow: 0 24px 60px rgba(0,0,0,.5), inset 0 1px 0 rgba(255,255,255,.06);
  overflow: hidden;
}

.page-home .hero-frame__window::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--neon), var(--violet));
}

.page-home .window__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 18px;
  border-bottom: 1px solid var(--rule);
  background: rgba(255,255,255,.03);
}

.page-home .window__season {
  font-size: 12px;
  letter-spacing: .12em;
  color: rgba(242,237,227,.62);
}

.page-home .window__status {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 12px;
  color: var(--neon);
}

.page-home .window__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--neon);
  box-shadow: 0 0 10px rgba(200,255,60,.9);
  animation: hm-dot 2.4s ease-in-out infinite;
}

@keyframes hm-dot {
  0%, 100% { opacity: 1; }
  50% { opacity: .35; }
}

.page-home .standings {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

.page-home .standings th {
  padding: 12px 10px;
  text-align: left;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .18em;
  color: rgba(242,237,227,.42);
  border-bottom: 1px solid var(--rule);
  white-space: nowrap;
}

.page-home .standings td {
  padding: 13px 10px;
  border-bottom: 1px solid rgba(42,49,59,.65);
  color: rgba(242,237,227,.9);
  white-space: nowrap;
}

.page-home .standings tbody tr:last-child td {
  border-bottom: 0;
}

.page-home .standings tbody tr {
  transition: background .25s var(--ease);
}

.page-home .standings tbody tr:hover {
  background: rgba(255,255,255,.035);
}

.page-home .standings tr.is-promotion td:first-child {
  box-shadow: inset 3px 0 0 var(--neon);
}

.page-home .standings tr.is-mid td:first-child {
  box-shadow: inset 3px 0 0 rgba(242,237,227,.22);
}

.page-home .standings tr.is-relegation td:first-child {
  box-shadow: inset 3px 0 0 var(--violet);
}

.page-home .standings .standings__pts {
  font-weight: 700;
  color: var(--neon);
}

.page-home .standings tr.is-relegation .standings__pts {
  color: rgba(200,255,60,.72);
}

.page-home .delta {
  font-family: var(--font-mono);
  font-size: 12px;
  padding: 2px 7px;
  border-radius: 2px;
  display: inline-block;
}

.page-home .delta--up { color: var(--neon); background: rgba(200,255,60,.1); }
.page-home .delta--down { color: #d6a7ff; background: rgba(139,92,246,.16); }
.page-home .delta--flat { color: rgba(242,237,227,.5); background: rgba(255,255,255,.05); }

.page-home .window__viz {
  position: relative;
  border-top: 1px solid var(--rule);
}

.page-home .window__viz img {
  display: block;
  width: 100%;
  height: 132px;
  object-fit: cover;
  opacity: .68;
  filter: saturate(.9);
}

.page-home .window__viz-note {
  position: absolute;
  left: 14px;
  bottom: 12px;
  font-size: 11px;
  letter-spacing: .12em;
  color: rgba(242,237,227,.7);
  background: rgba(10,13,18,.6);
  padding: 5px 10px;
  border-radius: 2px;
  backdrop-filter: blur(8px);
}

@media (min-width: 960px) {
  .page-home .hero-frame {
    padding: calc(var(--header-h) + 76px) 0 96px;
  }

  .page-home .hero-frame__grid {
    grid-template-columns: 5fr 7fr;
    gap: 56px;
    align-items: center;
  }

  .page-home .hero-frame__meta-text {
    writing-mode: vertical-rl;
    letter-spacing: .34em;
    font-size: 11px;
    padding: 6px 0;
  }

  .page-home .hero-frame__meta {
    align-items: flex-start;
  }

  .page-home .window__viz img {
    height: 152px;
  }
}

/* ============ 通用 section ============ */
.page-home .section {
  position: relative;
  padding: 68px 0;
}

.page-home .upgrades { background: var(--deep); border-top: 1px solid var(--rule); }
.page-home .finder { background: var(--arena); border-top: 1px solid var(--rule); }
.page-home .youth { background: var(--paper); color: var(--ink); }
.page-home .archive { background: var(--arena); border-top: 1px solid var(--rule); }
.page-home .access { background: var(--deep); border-top: 1px solid var(--rule); }
.page-home .next-steps { background: var(--arena); border-top: 1px solid var(--rule); }

/* ============ 焕新升级三件事 ============ */
.page-home .upgrades__head {
  max-width: 42em;
  margin-bottom: 40px;
}

.page-home .upgrades__title {
  margin: 14px 0 14px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(24px, 4.4vw, 38px);
  line-height: 1.3;
  letter-spacing: -.01em;
  color: var(--paper);
}

.page-home .upgrades__lead {
  margin: 0;
  font-size: 16px;
  line-height: 1.85;
  color: rgba(242,237,227,.66);
}

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

.page-home .upgrade-card {
  position: relative;
  padding: 28px 24px 26px;
  border-radius: 3px;
  background: rgba(255,255,255,.03);
  border: 1px solid var(--rule);
  transition: transform .35s var(--ease), border-color .35s var(--ease), background .35s var(--ease);
}

.page-home .upgrade-card::before {
  content: "";
  position: absolute;
  left: 24px;
  top: 0;
  width: 38px;
  height: 2px;
  background: var(--neon);
}

.page-home .upgrade-card--ios::before { background: var(--violet); }
.page-home .upgrade-card--search::before { background: linear-gradient(90deg, var(--neon), var(--violet)); }

.page-home .upgrade-card:hover {
  transform: translateY(-4px);
  border-color: rgba(200,255,60,.32);
  background: rgba(255,255,255,.05);
}

.page-home .upgrade-card__index {
  margin: 0 0 16px;
  font-size: 12px;
  letter-spacing: .24em;
  color: rgba(200,255,60,.72);
}

.page-home .upgrade-card--ios .upgrade-card__index { color: rgba(139,92,246,.9); }

.page-home .upgrade-card h3 {
  margin: 0 0 12px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 20px;
  line-height: 1.4;
  color: var(--paper);
}

.page-home .upgrade-card p {
  margin: 0 0 12px;
  font-size: 15px;
  line-height: 1.8;
  color: rgba(242,237,227,.7);
}

.page-home .upgrade-card__gain {
  margin: 0;
  padding-top: 14px;
  border-top: 1px dashed rgba(42,49,59,.9);
  color: var(--neon) !important;
  font-size: 14px !important;
}

.page-home .upgrade-card--ios .upgrade-card__gain { color: #c7a8ff !important; }

@media (min-width: 780px) {
  .page-home .upgrades__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
}

@media (min-width: 1100px) {
  .page-home .upgrades__grid {
    grid-template-columns: 7fr 5fr 6fr;
    align-items: start;
  }
  .page-home .upgrade-card--ios { margin-top: 32px; }
  .page-home .upgrade-card--search { margin-top: 14px; }
}

/* ============ 形势定位 ============ */
.page-home .finder__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
}

.page-home .finder__title {
  margin: 14px 0 16px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(23px, 4.2vw, 36px);
  line-height: 1.32;
  color: var(--paper);
}

.page-home .finder__lead {
  margin: 0 0 24px;
  font-size: 16px;
  line-height: 1.85;
  color: rgba(242,237,227,.7);
}

.page-home .finder__label {
  display: block;
  margin-bottom: 10px;
  font-size: 13px;
  letter-spacing: .08em;
  color: rgba(242,237,227,.55);
}

.page-home .finder__input {
  display: block;
  width: 100%;
  box-sizing: border-box;
  padding: 14px 16px;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--paper);
  background: rgba(255,255,255,.05);
  border: 1px solid var(--rule);
  border-radius: 2px;
  outline: none;
  transition: border-color .25s var(--ease), box-shadow .25s var(--ease);
}

.page-home .finder__input::placeholder { color: rgba(242,237,227,.34); }

.page-home .finder__input:focus {
  border-color: var(--neon);
  box-shadow: 0 0 0 3px rgba(200,255,60,.14);
}

.page-home .finder__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.page-home .finder__chips .tag {
  cursor: pointer;
  font-family: var(--font-body);
  background: transparent;
}

.page-home .finder__results {
  border: 1px solid var(--rule);
  border-radius: 3px;
  background: linear-gradient(170deg, rgba(20,26,34,.9), rgba(10,13,18,.92));
  padding: 20px 18px;
}

.page-home .finder__results-head {
  margin: 0 0 14px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--rule);
  font-size: 12px;
  letter-spacing: .08em;
  color: rgba(242,237,227,.5);
}

.page-home .finder__results-head .mono {
  color: var(--neon);
  font-size: 13px;
}

.page-home .finder__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 2px;
}

.page-home .finder__item {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 4px 12px;
  padding: 13px 12px;
  border-radius: 2px;
  transition: background .22s var(--ease);
}

.page-home .finder__item:hover { background: rgba(255,255,255,.045); }

.page-home .finder__item-name {
  font-weight: 700;
  font-size: 15px;
  color: var(--paper);
}

.page-home .finder__item-meta {
  grid-column: 1;
  font-size: 13px;
  color: rgba(242,237,227,.55);
}

.page-home .finder__item-tag {
  grid-column: 2;
  grid-row: 1 / span 2;
  font-size: 12px;
  padding: 4px 9px;
  border-radius: 2px;
  background: rgba(255,255,255,.06);
  color: rgba(242,237,227,.66);
  white-space: nowrap;
}

.page-home .finder__item-tag--up {
  color: var(--neon);
  background: rgba(200,255,60,.1);
}

.page-home .finder__item-tag--warn {
  color: #d6a7ff;
  background: rgba(139,92,246,.16);
}

@media (min-width: 960px) {
  .page-home .finder__grid {
    grid-template-columns: 6fr 6fr;
    gap: 56px;
    align-items: start;
  }
}

/* ============ 青训观察（暖纸层） ============ */
.page-home .youth {
  padding: 72px 0;
}

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

.page-home .youth__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  margin-top: 26px;
}

.page-home .youth__media {
  position: relative;
}

.page-home .youth__media img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 3px;
  filter: saturate(.86) contrast(1.02);
}

.page-home .youth__media-note {
  margin: 12px 0 0;
  font-size: 12px;
  letter-spacing: .12em;
  color: var(--ink-soft);
}

.page-home .youth__title {
  margin: 0 0 18px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(22px, 4vw, 34px);
  line-height: 1.32;
  color: var(--ink);
}

.page-home .youth__content p {
  margin: 0 0 16px;
  font-size: 16px;
  line-height: 1.85;
  color: var(--ink);
  max-width: 36em;
}

.page-home .youth__content .note {
  font-size: 13px;
  color: var(--ink-soft);
}

.page-home .youth__calendar {
  margin: 24px 0 24px;
  border: 1px solid rgba(26,29,34,.16);
  border-radius: 3px;
  background: rgba(255,255,255,.55);
  overflow: hidden;
}

.page-home .youth__calendar-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 18px;
  background: rgba(26,29,34,.05);
  border-bottom: 1px solid rgba(26,29,34,.12);
  font-size: 13px;
  color: var(--ink-soft);
}

.page-home .youth__calendar-head span:last-child {
  font-weight: 700;
  color: var(--ink);
}

.page-home .youth__calendar-days {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
}

.page-home .youth__calendar-days li {
  display: flex;
  align-items: baseline;
  gap: 12px;
  padding: 13px 18px;
  border-bottom: 1px solid rgba(26,29,34,.08);
  font-size: 14px;
  color: var(--ink);
}

.page-home .youth__calendar-days li:last-child { border-bottom: 0; }

.page-home .youth__calendar-days .mono {
  font-weight: 700;
  color: var(--ink-soft);
  min-width: 28px;
}

.page-home .youth__calendar-days li.is-marked {
  background: rgba(200,255,60,.22);
}

.page-home .youth__calendar-days li.is-marked .mono {
  color: #44560f;
}

.page-home .youth__cta {
  margin-top: 8px;
  border-color: rgba(26,29,34,.28);
  color: var(--ink);
}

.page-home .youth__cta:hover {
  border-color: var(--ink);
  color: var(--ink);
}

@media (min-width: 900px) {
  .page-home .youth__grid {
    grid-template-columns: 5fr 7fr;
    gap: 56px;
    align-items: start;
  }
}

/* ============ 赛季档案 ============ */
.page-home .archive__head {
  max-width: 44em;
  margin-bottom: 36px;
}

.page-home .archive__title {
  margin: 14px 0 14px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(24px, 4.4vw, 38px);
  line-height: 1.3;
  color: var(--paper);
}

.page-home .archive__lead {
  margin: 0;
  font-size: 16px;
  line-height: 1.85;
  color: rgba(242,237,227,.68);
}

.page-home .archive__figure {
  position: relative;
  margin-bottom: 28px;
  border-radius: 3px;
  overflow: hidden;
}

.page-home .archive__figure img {
  display: block;
  width: 100%;
  height: auto;
  opacity: .62;
  filter: saturate(.9);
}

.page-home .archive__figure::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(10,13,18,.85), transparent 40%, transparent 60%, rgba(10,13,18,.85));
  pointer-events: none;
}

.page-home .archive__track {
  list-style: none;
  margin: 0 0 36px;
  padding: 22px 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 16px 22px;
  border-top: 1px solid var(--rule);
}

.page-home .archive__track li {
  position: relative;
  font-size: 13px;
  color: rgba(242,237,227,.44);
  padding-top: 10px;
}

.page-home .archive__track li::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 1px;
  height: 8px;
  background: var(--rule);
}

.page-home .archive__track li.is-current {
  color: var(--neon);
  font-weight: 700;
}

.page-home .archive__track li.is-current::before {
  background: var(--neon);
  box-shadow: 0 0 8px rgba(200,255,60,.8);
}

.page-home .archive__notes {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
  padding-top: 32px;
  border-top: 1px solid var(--rule);
}

.page-home .archive__note h3 {
  margin: 0 0 8px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  color: var(--paper);
}

.page-home .archive__note p {
  margin: 0;
  font-size: 14px;
  line-height: 1.8;
  color: rgba(242,237,227,.62);
}

.page-home .archive__cta-line {
  margin: 36px 0 0;
  font-size: 15px;
  color: rgba(242,237,227,.7);
}

.page-home .archive__cta {
  color: var(--neon);
  text-decoration: none;
  border-bottom: 1px solid rgba(200,255,60,.45);
  padding-bottom: 1px;
  margin-left: 6px;
}

.page-home .archive__cta:hover { border-bottom-color: var(--neon); }

@media (min-width: 780px) {
  .page-home .archive__notes {
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
  }
}

/* ============ 入口与设备 ============ */
.page-home .access__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

.page-home .access__title {
  margin: 14px 0 16px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(23px, 4.2vw, 36px);
  line-height: 1.3;
  color: var(--paper);
}

.page-home .access__lead {
  margin: 0;
  font-size: 16px;
  line-height: 1.85;
  color: rgba(242,237,227,.68);
}

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

.page-home .access-card {
  padding: 22px 22px 24px;
  border: 1px solid var(--rule);
  border-radius: 3px;
  background: rgba(255,255,255,.028);
  transition: border-color .3s var(--ease), background .3s var(--ease);
}

.page-home .access-card:hover {
  border-color: rgba(200,255,60,.28);
  background: rgba(255,255,255,.05);
}

.page-home .access-card__tag {
  margin: 0 0 12px;
  font-size: 11px;
  letter-spacing: .22em;
  color: rgba(242,237,227,.44);
}

.page-home .access-card h3 {
  margin: 0 0 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 17px;
  color: var(--paper);
  word-break: break-all;
}

.page-home .access-card p {
  margin: 0;
  font-size: 14px;
  line-height: 1.8;
  color: rgba(242,237,227,.62);
}

.page-home .access-card--ios {
  background: linear-gradient(145deg, rgba(76,29,149,.28), rgba(20,26,34,.7));
  border-color: rgba(139,92,246,.35);
}

.page-home .access-card--ios .access-card__tag { color: rgba(199,168,255,.86); }

.page-home .access-card__cta {
  margin-top: 18px;
}

@media (min-width: 720px) {
  .page-home .access__cards {
    grid-template-columns: 1fr 1fr;
  }
  .page-home .access-card--ios {
    grid-column: span 2;
  }
}

@media (min-width: 1024px) {
  .page-home .access__grid {
    grid-template-columns: 4fr 8fr;
    gap: 56px;
    align-items: start;
  }
  .page-home .access__cards {
    grid-template-columns: 1fr 1fr;
  }
  .page-home .access-card--ios {
    grid-column: span 2;
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 20px;
  }
  .page-home .access-card--ios .access-card__cta {
    margin-top: 0;
    grid-column: 2;
    grid-row: 1 / span 3;
    align-self: center;
  }
}

/* ============ 下一步去哪 ============ */
.page-home .next-steps__head {
  max-width: 42em;
  margin-bottom: 34px;
}

.page-home .next-steps__title {
  margin: 14px 0 0;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(23px, 4.2vw, 36px);
  line-height: 1.3;
  color: var(--paper);
}

.page-home .next-steps__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.page-home .step-card {
  position: relative;
  display: block;
  padding: 26px 24px;
  border: 1px solid var(--rule);
  border-radius: 3px;
  background: rgba(255,255,255,.025);
  text-decoration: none;
  color: inherit;
  transition: transform .3s var(--ease), border-color .3s var(--ease), background .3s var(--ease);
}

.page-home .step-card:hover {
  transform: translateY(-4px);
  border-color: rgba(200,255,60,.4);
  background: rgba(200,255,60,.05);
}

.page-home .step-card__index {
  display: block;
  margin-bottom: 14px;
  font-size: 12px;
  letter-spacing: .22em;
  color: rgba(200,255,60,.7);
}

.page-home .step-card h3 {
  margin: 0 0 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  color: var(--paper);
}

.page-home .step-card p {
  margin: 0;
  font-size: 14px;
  line-height: 1.75;
  color: rgba(242,237,227,.62);
}

.page-home .step-card__arrow {
  position: absolute;
  top: 24px;
  right: 22px;
  font-size: 18px;
  color: rgba(200,255,60,.5);
  transition: transform .3s var(--ease), color .3s var(--ease);
}

.page-home .step-card:hover .step-card__arrow {
  transform: translateX(5px);
  color: var(--neon);
}

.page-home .next-steps__foot {
  margin: 34px 0 0;
  padding-top: 22px;
  border-top: 1px solid var(--rule);
  font-size: 14px;
  line-height: 1.8;
  color: rgba(242,237,227,.5);
}

@media (min-width: 700px) {
  .page-home .next-steps__grid {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
}

@media (min-width: 1100px) {
  .page-home .next-steps__grid {
    grid-template-columns: repeat(4, 1fr);
  }
  .page-home .step-card:nth-child(2) { margin-top: 22px; }
  .page-home .step-card:nth-child(3) { margin-top: 8px; }
  .page-home .step-card:nth-child(4) { margin-top: 30px; }
}

/* ============ 段落留白与节奏 ============ */
@media (min-width: 900px) {
  .page-home .section { padding: 88px 0; }
  .page-home .youth { padding: 96px 0; }
}

@media (prefers-reduced-motion: reduce) {
  .page-home .hero-frame__glow,
  .page-home .window__dot {
    animation: none;
  }
  .page-home .upgrade-card,
  .page-home .step-card,
  .page-home .access-card,
  .page-home .finder__item {
    transition: none;
  }
}
