/* ============ 首页 page-home ============ */
.page-home {
  --home-w: 1180px;
  --home-pad: 18px;
  color: var(--glass-white);
  font-family: var(--font-body);
}

.page-home .wrap {
  width: 100%;
  max-width: var(--home-w);
  margin-inline: auto;
  padding-inline: var(--home-pad);
}

.page-home img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* ---------- 上下文提示 ---------- */
.page-home .ctx {
  margin: 0;
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: var(--fs-14);
  letter-spacing: 0.06em;
  color: var(--neon);
}

.page-home .ctx::before {
  content: "";
  width: 22px;
  height: 1px;
  background: var(--neon);
  box-shadow: 0 0 8px var(--neon);
}

/* ---------- 首屏 ---------- */
.page-home .hero {
  position: relative;
  padding: 26px 0 44px;
  overflow: hidden;
  background:
    radial-gradient(1100px 520px at 84% -12%, rgba(56, 225, 212, 0.14), transparent 62%),
    radial-gradient(760px 440px at 6% 10%, rgba(192, 39, 45, 0.20), transparent 66%);
}

.page-home .deck-corner {
  position: absolute;
  width: 52px;
  height: 74px;
  border: 1px solid var(--line);
  background: linear-gradient(160deg, rgba(224, 169, 59, 0.18), rgba(192, 39, 45, 0.14));
  border-radius: var(--radius);
  pointer-events: none;
  opacity: 0.7;
}

.page-home .deck-corner--tl {
  top: 12px;
  left: -16px;
  transform: rotate(-15deg);
}

.page-home .deck-corner--br {
  bottom: 40px;
  right: -18px;
  transform: rotate(12deg);
}

.page-home .hero__grid {
  display: grid;
  gap: 28px;
  margin-top: 20px;
}

.page-home h1 {
  margin: 14px 0 0;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(2rem, 8.4vw, var(--fs-68));
  line-height: 1.06;
  letter-spacing: -0.02em;
  color: var(--gold-hi);
}

.page-home .hl {
  display: inline-block;
  padding: 0 0.1em;
  color: var(--ink);
  background: linear-gradient(100deg, var(--gold) 0%, var(--gold-hi) 58%, var(--gold) 100%);
  clip-path: polygon(10px 0, 100% 0, calc(100% - 10px) 100%, 0 100%);
}

.page-home .lede {
  margin: 20px 0 0;
  max-width: 34em;
  font-size: var(--fs-18);
  line-height: 1.9;
  color: var(--glass-white);
}

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

.page-home .hero__cta .btn {
  display: inline-flex;
  align-items: center;
  min-height: 46px;
  padding: 0 22px;
}

/* 首屏舞台 */
.page-home .hero__stage {
  position: relative;
}

.page-home .seat-ring {
  position: absolute;
  bottom: -26px;
  left: -22px;
  width: min(66%, 300px);
  height: auto;
  opacity: 0.55;
  z-index: 0;
  pointer-events: none;
}

.page-home .hero-window {
  position: relative;
  z-index: 1;
  margin: 0;
  padding: 10px;
  border: 1px solid var(--line);
  background: linear-gradient(160deg, rgba(69, 18, 26, 0.62), rgba(26, 10, 16, 0.92));
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 34px), calc(100% - 34px) 100%, 0 100%);
}

.page-home .hero-window img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  filter: saturate(1.06) contrast(1.04);
}

.page-home .hero-window__cap {
  margin: 10px 2px 2px;
  font-size: var(--fs-14);
  line-height: 1.7;
  color: var(--gray-gold);
}

/* 桌位数据带 */
.page-home .seat-band {
  position: relative;
  margin-top: 40px;
}

.page-home .seat-band__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.14;
  pointer-events: none;
  -webkit-mask-image: linear-gradient(180deg, transparent, #000 28%, #000 72%, transparent);
  mask-image: linear-gradient(180deg, transparent, #000 28%, #000 72%, transparent);
}

.page-home .metric-grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.page-home .metric-card {
  padding: 20px 18px 18px;
  border: 1px solid var(--line);
  background: linear-gradient(150deg, rgba(69, 18, 26, 0.94), rgba(26, 10, 16, 0.94));
  clip-path: polygon(var(--cut) 0, 100% 0, 100% calc(100% - var(--cut)), calc(100% - var(--cut)) 100%, 0 100%, 0 var(--cut));
}

.page-home .metric-label {
  margin: 0;
  font-size: var(--fs-14);
  letter-spacing: 0.08em;
  color: var(--gray-gold);
}

.page-home .metric {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin: 10px 0 0;
  font-family: var(--font-mono);
  font-variant-numeric: tabular-nums;
  font-size: clamp(2.8rem, 12vw, var(--fs-68));
  line-height: 1;
  color: var(--gold-hi);
}

.page-home .metric__unit {
  font-family: var(--font-body);
  font-size: var(--fs-16);
  color: var(--gray-gold);
}

.page-home .metric--word {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(1.9rem, 8vw, var(--fs-44));
  letter-spacing: -0.02em;
}

.page-home .metric-desc {
  margin: 14px 0 0;
  font-size: var(--fs-16);
  line-height: 1.85;
  color: rgba(246, 240, 231, 0.84);
}

/* ---------- 通用区块 ---------- */
.page-home .sec {
  position: relative;
  padding: 54px 0;
}

.page-home .sec--tint {
  background: linear-gradient(180deg, rgba(69, 18, 26, 0.55), rgba(26, 10, 16, 0) 92%);
}

.page-home .sec--deep {
  background: linear-gradient(180deg, rgba(26, 10, 16, 0), rgba(69, 18, 26, 0.72) 16%, rgba(69, 18, 26, 0.72) 84%, rgba(26, 10, 16, 0));
}

.page-home .sec--paths {
  background: linear-gradient(180deg, rgba(192, 39, 45, 0.16), rgba(26, 10, 16, 0) 70%);
}

.page-home .sec-head {
  max-width: 32em;
  margin-bottom: 26px;
}

.page-home .sec-kicker {
  margin: 0 0 8px;
  font-family: var(--font-mono);
  font-size: var(--fs-14);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gray-gold);
}

.page-home .sec-title {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(1.5rem, 5.6vw, var(--fs-44));
  line-height: 1.18;
  letter-spacing: -0.02em;
  color: var(--gold-hi);
}

.page-home .sec-lede {
  margin: 14px 0 0;
  font-size: var(--fs-16);
  line-height: 1.9;
  color: rgba(246, 240, 231, 0.82);
}

/* ---------- 房间分类 ---------- */
.page-home .room-banner {
  margin: 0 0 22px;
}

.page-home .room-banner img {
  width: 100%;
  aspect-ratio: 14 / 9;
  object-fit: cover;
  border: 1px solid var(--line);
}

.page-home .room-scroll {
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 14px;
  scrollbar-color: var(--gold) rgba(110, 74, 33, 0.35);
  scrollbar-width: thin;
}

.page-home .room-scroll::-webkit-scrollbar {
  height: 6px;
}

.page-home .room-scroll::-webkit-scrollbar-track {
  background: rgba(110, 74, 33, 0.35);
}

.page-home .room-scroll::-webkit-scrollbar-thumb {
  background: linear-gradient(90deg, var(--gold), var(--gold-hi));
}

.page-home .room-list {
  display: flex;
  gap: 14px;
  width: max-content;
  margin: 0;
  padding: 2px 0 6px;
  list-style: none;
}

.page-home .room-card {
  flex: 0 0 auto;
  width: 78vw;
  max-width: 300px;
  scroll-snap-align: start;
  padding: 22px 18px 20px;
  border: 1px solid var(--line);
  border-top: 3px solid var(--gold);
  background: linear-gradient(155deg, rgba(69, 18, 26, 0.92), rgba(26, 10, 16, 0.96));
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 16px), calc(100% - 16px) 100%, 0 100%);
}

.page-home .room-card:nth-child(2) { border-top-color: var(--neon); }
.page-home .room-card:nth-child(3) { border-top-color: var(--vermilion); }
.page-home .room-card:nth-child(4) { border-top-color: var(--gold-hi); }
.page-home .room-card:nth-child(5) { border-top-color: var(--gray-gold); }

.page-home .room-card__no {
  display: block;
  font-family: var(--font-mono);
  font-size: var(--fs-14);
  letter-spacing: 0.12em;
  color: var(--gray-gold);
}

.page-home .room-card__name {
  margin: 10px 0 0;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: var(--fs-22);
  letter-spacing: -0.01em;
  color: var(--gold-hi);
}

.page-home .room-card__desc {
  margin: 12px 0 0;
  font-size: var(--fs-16);
  line-height: 1.85;
  color: rgba(246, 240, 231, 0.84);
}

.page-home .room-card__fit {
  margin: 16px 0 0;
  padding-top: 12px;
  border-top: 1px solid var(--line-soft);
  font-size: var(--fs-14);
  line-height: 1.7;
  color: var(--neon);
}

.page-home .room-card__fit span {
  margin-right: 8px;
  padding: 1px 7px;
  border: 1px solid rgba(56, 225, 212, 0.5);
  font-family: var(--font-mono);
}

.page-home .scroll-hint {
  margin: 8px 0 0;
  font-size: var(--fs-14);
  color: var(--gray-gold);
}

/* ---------- 留白过渡 ---------- */
.page-home .pause {
  padding: 72px 0;
}

.page-home .pause p {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(1.6rem, 6vw, var(--fs-44));
  letter-spacing: -0.02em;
  color: var(--gold);
}

/* ---------- 双端 ---------- */
.page-home .duo-grid {
  display: grid;
  gap: 30px;
}

.page-home .duo__copy .sec-head {
  margin-bottom: 0;
}

.page-home .step-list {
  display: grid;
  gap: 18px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
  counter-reset: home-step;
}

.page-home .step-list > li {
  position: relative;
  padding-left: 46px;
}

.page-home .step-list > li::before {
  counter-increment: home-step;
  content: counter(home-step, decimal-leading-zero);
  position: absolute;
  left: 0;
  top: 2px;
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(56, 225, 212, 0.5);
  font-family: var(--font-mono);
  font-size: var(--fs-14);
  color: var(--neon);
}

.page-home .step-list__title {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: var(--fs-18);
  color: var(--gold-hi);
}

.page-home .step-list__desc {
  margin: 6px 0 0;
  font-size: var(--fs-16);
  line-height: 1.85;
  color: rgba(246, 240, 231, 0.82);
}

.page-home .duo__note {
  margin: 24px 0 0;
  padding: 12px 16px;
  border-left: 2px solid var(--neon);
  background: var(--neon-mist);
  font-size: var(--fs-16);
  line-height: 1.8;
  color: var(--glass-white);
}

.page-home .duo__figure {
  margin: 0;
}

.page-home .duo__figure img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border: 1px solid var(--line);
}

/* ---------- 术语 ---------- */
.page-home .term-grid {
  display: grid;
  gap: 12px;
}

.page-home .term {
  border: 1px solid var(--line);
  background: var(--glass-1);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.page-home .term__head {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 15px 16px;
  border: 0;
  background: transparent;
  color: var(--gold-hi);
  font-family: var(--font-display);
  font-weight: 900;
  font-size: var(--fs-18);
  text-align: left;
  cursor: pointer;
}

.page-home .term__head::after {
  content: "＋";
  font-family: var(--font-mono);
  font-size: var(--fs-16);
  color: var(--neon);
}

.page-home .term[data-open] .term__head::after {
  content: "－";
}

.page-home .term__body {
  display: block;
  margin-left: 16px;
  padding: 0 16px 16px;
  border-left: 2px solid var(--neon);
}

.page-home .term[data-open="false"] .term__body {
  display: none;
}

.page-home .term__def {
  margin: 0;
  font-size: var(--fs-16);
  line-height: 1.85;
  color: rgba(246, 240, 231, 0.86);
}

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

.page-home .terms__more {
  margin: 24px 0 0;
  font-size: var(--fs-16);
  line-height: 1.85;
  color: rgba(246, 240, 231, 0.82);
}

.page-home .terms__more a {
  color: var(--neon);
  text-decoration: underline;
  text-underline-offset: 4px;
}

/* ---------- 专栏 ---------- */
.page-home .journal {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line-soft);
}

.page-home .journal > li {
  border-bottom: 1px solid var(--line-soft);
}

.page-home .journal a {
  display: grid;
  gap: 8px;
  padding: 22px 0;
  color: inherit;
  text-decoration: none;
  transition: transform 0.25s ease;
}

.page-home .journal a:hover .journal__title {
  color: var(--gold-hi);
}

.page-home .journal__meta {
  margin: 0;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: var(--fs-14);
}

.page-home .journal__time {
  font-family: var(--font-mono);
  color: var(--neon);
}

.page-home .journal__tag {
  padding: 2px 8px;
  border: 1px solid var(--line);
  color: var(--gray-gold);
}

.page-home .journal__title {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: var(--fs-22);
  line-height: 1.4;
  letter-spacing: -0.01em;
  color: var(--glass-white);
  transition: color 0.25s ease;
}

.page-home .journal__desc {
  margin: 0;
  font-size: var(--fs-16);
  line-height: 1.85;
  color: rgba(246, 240, 231, 0.76);
}

/* ---------- 入口路径 ---------- */
.page-home .path-grid {
  display: grid;
  gap: 14px;
}

.page-home .path-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 24px 20px 22px;
  border: 1px solid var(--line);
  background: linear-gradient(160deg, rgba(69, 18, 26, 0.9), rgba(26, 10, 16, 0.95));
  color: inherit;
  text-decoration: none;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 18px), calc(100% - 18px) 100%, 0 100%);
  transition: border-color 0.25s ease, background 0.25s ease;
}

.page-home .path-card:hover,
.page-home .path-card:focus-visible {
  border-color: var(--gold-hi);
  background: linear-gradient(160deg, rgba(192, 39, 45, 0.32), rgba(26, 10, 16, 0.95));
  outline: none;
}

.page-home .path-card__no {
  font-family: var(--font-mono);
  font-size: var(--fs-14);
  letter-spacing: 0.12em;
  color: var(--gray-gold);
}

.page-home .path-card__name {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: var(--fs-22);
  color: var(--gold-hi);
}

.page-home .path-card__desc {
  margin: 0;
  font-size: var(--fs-16);
  line-height: 1.85;
  color: rgba(246, 240, 231, 0.84);
}

.page-home .path-card__go {
  margin-top: 6px;
  font-size: var(--fs-14);
  color: var(--neon);
}

.page-home .path-note {
  margin: 24px 0 0;
  font-size: var(--fs-16);
  line-height: 1.85;
  color: rgba(246, 240, 231, 0.78);
}

.page-home .path-note a {
  color: var(--neon);
  text-decoration: underline;
  text-underline-offset: 4px;
}

/* ============ 平板 ============ */
@media (min-width: 760px) {
  .page-home .metric-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

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

  .page-home .journal a {
    grid-template-columns: minmax(0, 1fr);
  }

  .page-home .room-card {
    width: 300px;
  }
}

/* ============ 桌面 ============ */
@media (min-width: 980px) {
  .page-home .hero {
    padding: 44px 0 60px;
  }

  .page-home .hero__grid {
    grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
    align-items: center;
    gap: 44px;
  }

  .page-home .sec {
    padding: 78px 0;
  }

  .page-home .pause {
    padding: 96px 0;
  }

  .page-home .duo-grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    align-items: center;
    gap: 48px;
  }

  .page-home .journal a {
    grid-template-columns: 168px minmax(0, 1fr);
    align-items: baseline;
    gap: 28px;
  }

  .page-home .journal__meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
}
<<<END>>>
