.page-home {
  position: relative;
  display: block;
  padding-bottom: clamp(48px, 6vw, 96px);
  overflow-x: clip;
}

.page-home::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 460px;
  background:
    linear-gradient(115deg, rgba(184, 255, 60, .10) 0%, rgba(56, 224, 192, 0) 42%),
    repeating-linear-gradient(90deg, rgba(53, 224, 192, .07) 0 2px, transparent 2px 104px);
  -webkit-mask-image: linear-gradient(180deg, #000 0%, transparent 100%);
  mask-image: linear-gradient(180deg, #000 0%, transparent 100%);
  pointer-events: none;
}

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

/* ---------- 首屏 ---------- */
.page-home .hero-split {
  display: grid;
  gap: clamp(26px, 4vw, 46px);
  padding-top: clamp(16px, 3vw, 34px);
}

.page-home .hero-kicker {
  display: inline-block;
  margin: 0;
  padding: 7px 15px;
  font-size: 12.5px;
  letter-spacing: .1em;
  color: var(--cyan);
  background: var(--cyan-soft);
  border: 1px solid rgba(53, 224, 192, .34);
  border-radius: var(--radius-pill);
}

.page-home .hero-title {
  margin: 20px 0 0;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(34px, 7.2vw, 62px);
  line-height: 1.06;
  letter-spacing: -.02em;
  color: var(--paper);
}

.page-home .hero-title span {
  color: var(--neon);
}

.page-home .hero-lede {
  margin: 18px 0 0;
  max-width: 44ch;
  color: rgba(243, 247, 245, .82);
}

.page-home .hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 22px;
  margin-top: 28px;
}

.page-home .hero-actions .btn {
  padding: 14px 28px;
  font-size: 16px;
}

.page-home .hero-alt-link {
  font-size: 14.5px;
  color: var(--ember);
  border-bottom: 1px dashed rgba(255, 90, 43, .5);
  padding-bottom: 2px;
  transition: color var(--ease), border-color var(--ease);
}

.page-home .hero-alt-link:hover,
.page-home .hero-alt-link:focus-visible {
  color: var(--paper);
  border-color: var(--paper);
}

/* 首屏右侧斜切面板 */
.page-home .hero-panel {
  position: relative;
  padding: 1px;
  min-height: 300px;
  border-radius: var(--radius-xl);
  background: linear-gradient(140deg, var(--neon), rgba(53, 224, 192, .45) 36%, rgba(143, 163, 184, .12) 74%);
  clip-path: polygon(0 0, 100% 0, 100% 84%, 90% 100%, 0 100%);
}

.page-home .hero-panel__inner {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 300px;
  height: 100%;
  padding: 24px 22px;
  border-radius: calc(var(--radius-xl) - 3px);
  background: linear-gradient(175deg, #10243a, var(--ink) 78%);
  overflow: hidden;
}

.page-home .hero-panel__media {
  position: absolute;
  inset: 0;
}

.page-home .hero-panel__media img {
  display: block;
  width: 100%;
  height: 100%;
  max-width: 100%;
  object-fit: cover;
  opacity: .52;
}

.page-home .hero-panel__veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 23, 38, .18) 0%, rgba(10, 23, 38, .9) 74%);
}

.page-home .hero-panel__scan {
  position: absolute;
  top: 0;
  left: 0;
  width: 42%;
  height: 100%;
  background: linear-gradient(100deg, transparent, rgba(184, 255, 60, .16), transparent);
  animation: home-scan 7s linear infinite;
  pointer-events: none;
}

@keyframes home-scan {
  0% { transform: translateX(-70%); }
  100% { transform: translateX(260%); }
}

.page-home .hero-panel__body {
  position: relative;
  z-index: 2;
}

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

.page-home .hero-panel__title {
  margin: 14px 0 0;
  font-size: clamp(18px, 2.4vw, 22px);
  font-weight: 800;
  letter-spacing: -.01em;
  color: var(--paper);
}

.page-home .hero-panel__note {
  margin: 8px 0 0;
  font-family: var(--font-mono);
  font-size: 12.5px;
  letter-spacing: .04em;
  color: var(--mist);
}

/* ---------- 通用画板 ---------- */
.page-home .board {
  position: relative;
  margin-top: clamp(40px, 5.4vw, 76px);
  padding: clamp(22px, 3.4vw, 46px);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--panel);
}

.page-home .board--flat {
  background: transparent;
}

.page-home .board__head {
  max-width: 54ch;
}

.page-home .board__eyebrow {
  display: block;
  margin-bottom: 12px;
  font-size: 12.5px;
  letter-spacing: .14em;
  color: var(--cyan);
  text-transform: uppercase;
}

.page-home .board__title {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(23px, 3.5vw, 38px);
  line-height: 1.16;
  letter-spacing: -.02em;
  color: var(--paper);
}

.page-home .board__text {
  margin: 15px 0 0;
  max-width: 48ch;
  font-size: 16px;
  line-height: 1.78;
  color: rgba(243, 247, 245, .8);
}

.page-home .link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 24px;
  font-size: 15px;
  font-weight: 600;
  color: var(--neon);
  border-bottom: 1px solid rgba(184, 255, 60, .42);
  padding-bottom: 3px;
  transition: color var(--ease), border-color var(--ease);
}

.page-home .link-arrow:hover,
.page-home .link-arrow:focus-visible {
  color: var(--paper);
  border-color: var(--paper);
}

.page-home .link-arrow--quiet {
  color: var(--mist);
  border-color: rgba(143, 163, 184, .42);
}

.page-home .link-arrow--quiet:hover,
.page-home .link-arrow--quiet:focus-visible {
  color: var(--paper);
  border-color: var(--paper);
}

/* ---------- 第 12 轮数据 ---------- */
.page-home .stat-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 28px;
}

.page-home .stat {
  padding: 18px 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--card);
  transition: border-color var(--ease), transform var(--ease);
}

.page-home .stat:hover {
  transform: translateY(-4px);
  border-color: var(--neon);
}

.page-home .stat__num {
  display: block;
  font-size: clamp(28px, 4.2vw, 40px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -.02em;
  color: var(--neon);
}

.page-home .stat--cyan .stat__num {
  color: var(--cyan);
}

.page-home .stat__label {
  display: block;
  margin-top: 10px;
  font-size: 13.5px;
  line-height: 1.5;
  color: var(--mist);
}

/* ---------- 价格浮层 ---------- */
.page-home .pay-board {
  position: relative;
  margin-top: clamp(40px, 5.4vw, 76px);
  border: 1px solid rgba(255, 90, 43, .3);
  border-radius: var(--radius-xl);
  background: var(--panel);
  overflow: hidden;
}

.page-home .pay-board__bg {
  position: absolute;
  inset: 0;
}

.page-home .pay-board__bg img {
  display: block;
  width: 100%;
  height: 100%;
  max-width: 100%;
  object-fit: cover;
  opacity: .2;
}

.page-home .pay-board__inner {
  position: relative;
  z-index: 2;
  padding: clamp(22px, 3.4vw, 46px);
}

.page-home .pay-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin-top: 28px;
}

.page-home .pay-card {
  padding: 20px 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--card);
  transition: transform var(--ease), border-color var(--ease), box-shadow var(--ease);
}

.page-home .pay-card:hover,
.page-home .pay-card:focus-within {
  transform: translateY(-4px);
  border-color: var(--neon);
  box-shadow: 0 14px 32px rgba(10, 23, 38, .5);
}

.page-home .pay-card__tier {
  display: inline-block;
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ember);
}

.page-home .pay-card__name {
  margin: 10px 0 0;
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -.01em;
  color: var(--paper);
}

.page-home .pay-card__desc {
  margin: 9px 0 0;
  font-size: 14px;
  line-height: 1.7;
  color: var(--mist);
}

.page-home .pay-card__list {
  list-style: none;
  margin: 18px 0 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.page-home .pay-card__list li {
  position: relative;
  padding-left: 18px;
  font-size: 14.5px;
  line-height: 1.62;
  color: rgba(243, 247, 245, .86);
}

.page-home .pay-card__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 8px;
  height: 8px;
  border-radius: 2px;
  background: var(--neon);
  transform: rotate(45deg);
}

.page-home .pay-card--single {
  border-color: rgba(255, 90, 43, .42);
  background: linear-gradient(150deg, rgba(255, 90, 43, .1), var(--card) 46%);
}

.page-home .pay-card--single .pay-card__list li::before {
  background: var(--cyan);
}

/* ---------- 通勤切片 ---------- */
.page-home .commute,
.page-home .review {
  display: grid;
  gap: clamp(20px, 3vw, 38px);
}

.page-home .media img {
  max-width: 100%;
}

.page-home .media__frame {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: linear-gradient(150deg, #0e2136, #17324d);
}

.page-home .media--4x3 .media__frame {
  aspect-ratio: 4 / 3;
}

.page-home .media--16x9 .media__frame {
  aspect-ratio: 16 / 9;
}

.page-home .media__frame img {
  display: block;
  width: 100%;
  height: 100%;
  max-width: 100%;
  object-fit: cover;
}

.page-home .media__cap {
  display: block;
  margin-top: 12px;
  font-size: 13px;
  line-height: 1.6;
  color: var(--mist);
}

.page-home .slice {
  margin-top: 16px;
  padding: 16px 18px;
  border-radius: var(--radius-md);
  border-left: 3px solid var(--cyan);
  background: rgba(10, 23, 38, .62);
}

.page-home .slice__time {
  display: block;
  font-size: 12.5px;
  letter-spacing: .1em;
  color: var(--cyan);
}

.page-home .slice__text {
  margin: 9px 0 0;
  font-size: 15px;
  line-height: 1.72;
  color: rgba(243, 247, 245, .84);
}

/* ---------- 复盘对照 ---------- */
.page-home .review__list {
  list-style: none;
  margin: 22px 0 0;
  padding: 0;
  display: grid;
  gap: 14px;
}

.page-home .review__list li {
  position: relative;
  padding-left: 26px;
  font-size: 15px;
  line-height: 1.7;
  color: rgba(243, 247, 245, .84);
}

.page-home .review__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  border: 2px solid var(--violet);
  background: var(--ink);
}

/* ---------- 赛事门类 ---------- */
.page-home .cat-strip {
  list-style: none;
  display: flex;
  gap: 10px;
  margin: 22px 0 0;
  padding: 4px 2px 12px;
  overflow-x: auto;
  scrollbar-width: thin;
  -webkit-overflow-scrolling: touch;
}

.page-home .cat {
  display: inline-block;
  padding: 9px 18px;
  font-size: 14.5px;
  white-space: nowrap;
  color: var(--paper);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-pill);
  background: rgba(10, 23, 38, .6);
  transition: border-color var(--ease), color var(--ease), background var(--ease);
}

.page-home .cat:hover {
  color: var(--neon);
  border-color: var(--neon);
  background: var(--neon-soft);
}

/* ---------- 高频问题 ---------- */
.page-home .faq-list {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.page-home .faq {
  display: block;
  padding: 20px 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--card);
  transition: transform var(--ease), border-color var(--ease);
}

.page-home .faq:hover,
.page-home .faq:focus-visible {
  transform: translateY(-4px);
  border-color: var(--neon);
}

.page-home .faq__q {
  display: block;
  font-size: 16.5px;
  font-weight: 700;
  line-height: 1.5;
  color: var(--paper);
}

.page-home .faq__a {
  display: block;
  margin-top: 10px;
  font-size: 14.5px;
  line-height: 1.72;
  color: var(--mist);
}

.page-home .faq__go {
  display: block;
  margin-top: 14px;
  font-size: 12.5px;
  letter-spacing: .08em;
  color: var(--neon);
}

/* ---------- 团队与规模 ---------- */
.page-home .trust__grid {
  display: grid;
  gap: clamp(22px, 3vw, 40px);
}

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

.page-home .trust__stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  align-content: start;
}

.page-home .trust__cell {
  padding: 18px 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(10, 23, 38, .55);
}

.page-home .trust__num {
  display: block;
  font-size: clamp(24px, 3.4vw, 32px);
  font-weight: 700;
  line-height: 1;
  color: var(--paper);
}

.page-home .trust__cap {
  display: block;
  margin-top: 9px;
  font-size: 13px;
  line-height: 1.5;
  color: var(--mist);
}

/* ---------- 响应式 ---------- */
@media (min-width: 700px) {
  .page-home .pay-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .page-home .pay-card--single {
    grid-column: 1 / -1;
  }

  .page-home .pay-card--single .pay-card__list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .page-home .faq-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

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

  .page-home .trust__grid {
    grid-template-columns: minmax(0, 1.1fr) minmax(0, .9fr);
    align-items: center;
  }
}

@media (min-width: 960px) {
  .page-home .hero-split {
    grid-template-columns: minmax(0, 1.06fr) minmax(0, .94fr);
    align-items: center;
    gap: clamp(28px, 3.4vw, 56px);
  }

  .page-home .hero-panel,
  .page-home .hero-panel__inner {
    min-height: clamp(340px, 36vw, 440px);
  }

  .page-home .commute {
    grid-template-columns: minmax(0, .82fr) minmax(0, 1.18fr);
    align-items: center;
  }

  .page-home .review {
    grid-template-columns: minmax(0, 1.08fr) minmax(0, .92fr);
    align-items: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  .page-home .hero-panel__scan {
    animation: none;
    display: none;
  }

  .page-home .stat,
  .page-home .pay-card,
  .page-home .faq {
    transition: none;
  }
}
