.page-home {
  --ph-line: var(--line);
  --ph-pad-x: 20px;
  background-color: var(--ink);
  color: var(--text);
  overflow-x: clip;
}

.page-home .ph-link {
  display: inline-block;
  margin-top: 18px;
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: .04em;
  color: var(--cyan);
  text-decoration: none;
  border-bottom: 1px solid rgba(0, 229, 208, .35);
  padding-bottom: 3px;
  transition: border-color .16s var(--ease), color .16s var(--ease);
}

.page-home .ph-link:hover,
.page-home .ph-link:focus-visible {
  color: var(--gold-hi);
  border-bottom-color: var(--gold-hi);
}

.page-home .ph-sec-head {
  max-width: 760px;
  margin-bottom: 36px;
}

.page-home .ph-sec-head .section-title {
  margin: 10px 0 14px;
}

.page-home .ph-sec-lede {
  font-size: 16px;
  line-height: 1.78;
  color: var(--text-2);
  margin: 0;
}

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

.page-home .ph-hero {
  position: relative;
  isolation: isolate;
  padding-top: calc(var(--header-h) + 16px);
  padding-bottom: 56px;
  border-bottom: 1px solid var(--line);
}

.page-home .ph-hero__media {
  position: absolute;
  inset: 0;
  z-index: -2;
  overflow: hidden;
}

.page-home .ph-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .34;
  filter: saturate(.8) contrast(1.06);
}

.page-home .ph-hero__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(110% 70% at 12% 0%, rgba(212, 160, 23, .2), transparent 62%),
    radial-gradient(80% 60% at 92% 10%, rgba(106, 63, 160, .22), transparent 66%),
    linear-gradient(180deg, rgba(11, 14, 20, .74) 0%, rgba(11, 14, 20, .93) 58%, var(--ink) 100%);
}

.page-home .ph-hero__grid {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image:
    repeating-linear-gradient(90deg, rgba(42, 51, 80, .55) 0 1px, transparent 1px 72px),
    repeating-linear-gradient(0deg, rgba(42, 51, 80, .35) 0 1px, transparent 1px 72px);
  -webkit-mask-image: linear-gradient(180deg, rgba(0, 0, 0, .75), transparent 78%);
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, .75), transparent 78%);
}

.page-home .ph-hero__inner {
  position: relative;
}

.page-home .ph-hero .breadcrumb {
  margin-bottom: 26px;
}

.page-home .ph-hero__body {
  display: grid;
  gap: 34px;
}

.page-home .ph-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(28px, 6.1vw, 54px);
  line-height: 1.14;
  letter-spacing: -.01em;
  margin: 12px 0 20px;
  transform: skewX(-2deg);
  text-shadow: 0 0 26px rgba(212, 160, 23, .26);
}

.page-home .ph-hero .lede {
  max-width: 640px;
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-2);
  margin: 0;
}

.page-home .ph-stat {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 6px 18px;
  margin-top: 32px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.page-home .ph-stat__num {
  font-family: var(--font-mono);
  font-size: clamp(52px, 13vw, 96px);
  line-height: .9;
  letter-spacing: -.03em;
  color: var(--gold-hi);
  text-shadow: 0 0 32px rgba(242, 199, 74, .28);
}

.page-home .ph-stat__label {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-2);
}

.page-home .ph-hero__note {
  margin: 16px 0 0;
  font-size: 13px;
  line-height: 1.7;
  color: var(--text-2);
  font-family: var(--font-mono);
  letter-spacing: .02em;
}

/* 周四窗口窄条 */

.page-home .ph-clock {
  position: relative;
  padding: 22px 20px 24px;
  border: 1px solid var(--line);
  background: linear-gradient(160deg, rgba(30, 36, 64, .95), rgba(19, 24, 38, .95));
  box-shadow: var(--shadow);
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 22px), 0 100%);
}

.page-home .ph-clock__day {
  font-family: var(--font-display);
  font-size: 20px;
  margin: 12px 0 2px;
  color: var(--gold);
  letter-spacing: .04em;
}

.page-home .ph-clock__range {
  font-family: var(--font-mono);
  font-size: clamp(24px, 7vw, 34px);
  margin: 0;
  color: var(--text);
  letter-spacing: .01em;
}

.page-home .ph-clock__ticks {
  list-style: none;
  display: flex;
  justify-content: space-between;
  gap: 6px;
  margin: 18px 0 0;
  padding: 0;
}

.page-home .ph-clock__ticks li {
  flex: 1;
  text-align: center;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-2);
  padding-top: 10px;
  border-top: 2px solid var(--line);
}

.page-home .ph-clock__ticks li:first-child,
.page-home .ph-clock__ticks li:last-child {
  border-top-color: var(--cyan);
  color: var(--cyan);
}

.page-home .ph-clock__meta {
  margin: 16px 0 0;
  font-size: 13px;
  line-height: 1.7;
  color: var(--text-2);
}

/* 模块索引 */

.page-home .ph-index {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  margin: 44px 0 0;
  padding: 0;
  background: var(--line);
  border: 1px solid var(--line);
}

.page-home .ph-idx {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 7px;
  height: 100%;
  padding: 20px 18px 22px;
  background: rgba(19, 24, 38, .94);
  color: inherit;
  text-decoration: none;
  transition: background-color .16s var(--ease), transform .16s var(--ease);
}

.page-home .ph-idx::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .2s var(--ease);
}

.page-home .ph-idx:hover,
.page-home .ph-idx:focus-visible {
  background: var(--panel-2);
  transform: translateY(-4px);
}

.page-home .ph-idx:hover::before,
.page-home .ph-idx:focus-visible::before {
  transform: scaleX(1);
}

.page-home .ph-idx__code {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: .1em;
  color: var(--gold);
}

.page-home .ph-idx__name {
  font-family: var(--font-display);
  font-size: 17px;
  transform: skewX(-2deg);
  color: var(--text);
}

.page-home .ph-idx__desc {
  font-size: 13px;
  line-height: 1.65;
  color: var(--text-2);
}

/* ---------- 开服时间轴 ---------- */

.page-home .ph-timeline {
  position: relative;
  padding: 64px 0 56px;
  background: linear-gradient(180deg, var(--ink) 0%, var(--panel) 42%, var(--ink) 100%);
}

.page-home .ph-timeline__grid {
  display: grid;
  gap: 32px;
}

.page-home .ph-timeline__list {
  list-style: none;
  margin: 0;
  padding: 0 0 0 18px;
  position: relative;
}

.page-home .ph-timeline__list::before {
  content: "";
  position: absolute;
  left: 4px;
  top: 8px;
  bottom: 8px;
  width: 1px;
  background: linear-gradient(180deg, var(--cyan), rgba(0, 229, 208, .12));
}

.page-home .ph-day {
  position: relative;
  margin-bottom: 2px;
}

.page-home .ph-day::before {
  content: "";
  position: absolute;
  left: -18px;
  top: 20px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--ink);
  border: 1px solid var(--gold);
  box-shadow: 0 0 10px rgba(212, 160, 23, .55);
}

.page-home .ph-day__head {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  padding: 14px 4px;
  background: none;
  border: 0;
  border-bottom: 1px solid var(--line);
  color: var(--text);
  text-align: left;
  cursor: pointer;
  font: inherit;
  transition: color .16s var(--ease);
}

.page-home .ph-day__head:hover {
  color: var(--gold-hi);
}

.page-home .ph-day__head .timeline-date {
  font-family: var(--font-mono);
  font-size: 14px;
  letter-spacing: .06em;
  flex: 1;
}

.page-home .ph-day__count {
  font-size: 13px;
  color: var(--text-2);
}

.page-home .ph-day__panel {
  padding: 4px 0 14px;
}

.page-home .ph-batch {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 6px;
}

.page-home .ph-batch li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: baseline;
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--text-2);
}

.page-home .ph-batch__t {
  color: var(--cyan);
  font-size: 12px;
  letter-spacing: .05em;
}

.page-home .ph-timeline__figure {
  border: 1px solid var(--line);
  background: var(--panel);
}

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

.page-home .ph-timeline__foot {
  margin: 34px 0 0;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  font-size: 13.5px;
  line-height: 1.75;
  color: var(--text-2);
}

.page-home .ph-timeline__foot a {
  color: var(--cyan);
  text-decoration: none;
  border-bottom: 1px solid rgba(0, 229, 208, .35);
}

/* ---------- 周四窗口 ---------- */

.page-home .ph-weekly {
  position: relative;
  padding: 60px 0 68px;
  background:
    linear-gradient(148deg, rgba(106, 63, 160, .42) 0%, rgba(11, 14, 20, .2) 46%, rgba(0, 229, 208, .1) 100%),
    var(--panel-2);
  clip-path: polygon(0 28px, 100% 0, 100% calc(100% - 28px), 0 100%);
}

.page-home .ph-weekly::before,
.page-home .ph-weekly::after {
  content: "";
  position: absolute;
  left: -3%;
  right: -3%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold) 22%, var(--gold) 78%, transparent);
  transform: rotate(-.6deg);
  opacity: .7;
  pointer-events: none;
}

.page-home .ph-weekly::before { top: 26px; }
.page-home .ph-weekly::after { bottom: 26px; }

.page-home .ph-weekly__grid {
  display: grid;
  gap: 36px;
  padding-top: 14px;
}

.page-home .ph-weekly__intro .section-title {
  margin: 10px 0 16px;
}

.page-home .ph-weekly__intro .prose {
  max-width: 560px;
  font-size: 15.5px;
  line-height: 1.82;
  color: var(--text);
  margin: 0;
}

.page-home .ph-weekly__tip {
  margin: 16px 0 22px;
  padding-left: 14px;
  border-left: 2px solid var(--gold);
  font-size: 13.5px;
  line-height: 1.7;
  color: var(--text-2);
}

.page-home .ph-weekly__scale {
  position: relative;
}

.page-home .ph-scale__axis {
  position: relative;
  height: 3px;
  border-radius: 3px;
  background: rgba(42, 51, 80, .9);
}

.page-home .ph-scale__fill {
  position: absolute;
  inset: 0;
  border-radius: 3px;
  background: linear-gradient(90deg, var(--violet), var(--cyan));
  box-shadow: 0 0 18px rgba(0, 229, 208, .35);
}

.page-home .ph-scale__pin {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 13px;
  height: 13px;
  margin: -6.5px 0 0 -6.5px;
  border-radius: 50%;
  background: var(--ink);
  border: 2px solid var(--gold-hi);
  box-shadow: 0 0 14px rgba(242, 199, 74, .6);
  animation: ph-pulse 4s var(--ease) infinite;
}

@keyframes ph-pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.22); opacity: .82; }
}

.page-home .ph-scale__ticks {
  list-style: none;
  display: flex;
  justify-content: space-between;
  gap: 4px;
  margin: 20px 0 0;
  padding: 0;
}

.page-home .ph-scale__ticks li {
  display: flex;
  flex-direction: column;
  gap: 3px;
  font-family: var(--font-mono);
  font-size: 11.5px;
  color: var(--text-2);
  letter-spacing: .04em;
}

.page-home .ph-scale__ticks em {
  font-family: var(--font-body);
  font-style: normal;
  font-size: 11px;
  color: var(--gold);
}

.page-home .ph-weekly__facts {
  display: grid;
  gap: 1px;
  margin: 32px 0 0;
  background: var(--line);
  border: 1px solid var(--line);
}

.page-home .ph-weekly__facts > div {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 12px;
  padding: 13px 14px;
  background: rgba(19, 24, 38, .86);
}

.page-home .ph-weekly__facts dt {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: .05em;
  color: var(--text-2);
}

.page-home .ph-weekly__facts dd {
  margin: 0;
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--text);
}

.page-home .ph-weekly__note {
  margin: 18px 0 0;
  font-size: 13px;
  line-height: 1.72;
  color: var(--text-2);
}

.page-home .ph-weekly__note a {
  color: var(--cyan);
  text-decoration: none;
  border-bottom: 1px solid rgba(0, 229, 208, .35);
}

/* ---------- 赛季游戏库 ---------- */

.page-home .ph-season {
  padding: 72px 0 60px;
}

.page-home .ph-season__grid {
  display: grid;
  gap: 30px;
}

.page-home .ph-season__figure {
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  align-self: start;
}

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

.page-home .ph-season__nav ol {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 0 0 26px;
  padding: 0;
}

.page-home .ph-season__chip {
  display: inline-block;
  padding: 5px 11px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: .06em;
  color: var(--text-2);
  border: 1px solid var(--line);
  background: rgba(19, 24, 38, .7);
}

.page-home .ph-season__chip--on {
  color: var(--ink);
  background: var(--gold);
  border-color: var(--gold);
  font-weight: 700;
}

.page-home .ph-bars {
  list-style: none;
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
}

.page-home .ph-bar {
  display: grid;
  grid-template-columns: 54px 1fr 40px;
  align-items: center;
  gap: 12px;
}

.page-home .ph-bar__label {
  font-size: 13.5px;
  color: var(--text);
}

.page-home .ph-bar__track {
  position: relative;
  height: 8px;
  background: rgba(42, 51, 80, .75);
  overflow: hidden;
}

.page-home .ph-bar__fill {
  display: block;
  height: 100%;
  width: var(--w, 0%);
  background: linear-gradient(90deg, var(--violet), var(--gold));
}

.page-home .ph-bar__num {
  font-size: 14px;
  color: var(--gold-hi);
  text-align: right;
}

.page-home .ph-season__note {
  margin: 26px 0 0;
  font-size: 13.5px;
  line-height: 1.72;
  color: var(--text-2);
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

/* ---------- 小屏端服务清单 ---------- */

.page-home .ph-slim {
  padding: 64px 0 68px;
  background: var(--paper);
  color: #1B1F2A;
}

.page-home .ph-sec-head--paper .section-title,
.page-home .ph-sec-head--paper .eyebrow {
  color: #1B1F2A;
}

.page-home .ph-sec-head--paper .eyebrow {
  color: #6A3FA0;
}

.page-home .ph-sec-head--paper .ph-sec-lede {
  color: #4C5468;
}

.page-home .ph-slim__grid {
  display: grid;
  gap: 30px;
}

.page-home .ph-slim__table {
  overflow-x: auto;
}

.page-home .ph-slim .data-table {
  width: 100%;
  min-width: 520px;
  border-collapse: collapse;
  font-size: 14px;
}

.page-home .ph-slim .data-table caption {
  text-align: left;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: .06em;
  color: #4C5468;
  padding-bottom: 10px;
}

.page-home .ph-slim .data-table th,
.page-home .ph-slim .data-table td {
  padding: 12px 14px;
  border-bottom: 1px solid rgba(27, 31, 42, .16);
  text-align: left;
  vertical-align: top;
}

.page-home .ph-slim .data-table thead th {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: .06em;
  font-weight: 400;
  color: #4C5468;
  background: rgba(27, 31, 42, .06);
  border-bottom: 1px solid rgba(27, 31, 42, .3);
}

.page-home .ph-slim .data-table tbody th {
  font-weight: 600;
  color: #1B1F2A;
  white-space: nowrap;
}

.page-home .ph-slim .data-table .num {
  font-family: var(--font-mono);
  color: #6A3FA0;
  white-space: nowrap;
}

.page-home .ph-slim__sum {
  margin: 18px 0 0;
  font-size: 13.5px;
  line-height: 1.7;
  color: #4C5468;
  border-left: 2px solid var(--gold);
  padding-left: 14px;
}

.page-home .ph-slim__figure {
  border: 1px solid rgba(27, 31, 42, .18);
  background: #FFFFFF;
  align-self: start;
}

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

.page-home .ph-slim__figure .media-frame__caption {
  padding: 12px 14px;
  font-size: 12.5px;
  line-height: 1.6;
  color: #4C5468;
}

/* ---------- 校核说明 ---------- */

.page-home .ph-audit {
  padding: 56px 0 72px;
  background: var(--ink);
}

.page-home .ph-audit__inner {
  display: grid;
  gap: 26px;
  padding: 30px 24px 32px;
  border: 1px solid var(--line);
  background: linear-gradient(140deg, rgba(19, 24, 38, .96), rgba(30, 36, 64, .7));
  box-shadow: var(--shadow);
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 26px), 0 100%);
}

.page-home .ph-audit__inner .sub-title {
  margin: 10px 0 14px;
}

.page-home .ph-audit__inner .prose {
  max-width: 700px;
  font-size: 15px;
  line-height: 1.8;
  color: var(--text-2);
  margin: 0;
}

.page-home .ph-audit__inner .prose a {
  color: var(--cyan);
  text-decoration: none;
  border-bottom: 1px solid rgba(0, 229, 208, .35);
}

.page-home .ph-audit__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

/* ---------- 响应式 ---------- */

@media (min-width: 640px) {
  .page-home .ph-index {
    grid-template-columns: repeat(2, 1fr);
  }

  .page-home .ph-bar {
    grid-template-columns: 64px 1fr 48px;
  }
}

@media (min-width: 900px) {
  .page-home .ph-hero__body {
    grid-template-columns: minmax(0, 8fr) minmax(0, 4fr);
    gap: 44px;
    align-items: start;
  }

  .page-home .ph-timeline__grid {
    grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
    gap: 40px;
    align-items: start;
  }

  .page-home .ph-timeline__figure {
    position: sticky;
    top: calc(var(--header-h) + 24px);
  }

  .page-home .ph-weekly__grid {
    grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
    gap: 48px;
    align-items: start;
  }

  .page-home .ph-season__grid {
    grid-template-columns: minmax(0, 4fr) minmax(0, 8fr);
    gap: 44px;
  }

  .page-home .ph-slim__grid {
    grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
    gap: 40px;
    align-items: start;
  }

  .page-home .ph-audit__inner {
    grid-template-columns: minmax(0, 8fr) minmax(0, 4fr);
    align-items: end;
    padding: 36px 34px 40px;
  }

  .page-home .ph-audit__actions {
    justify-content: flex-end;
  }
}

@media (min-width: 1024px) {
  .page-home .ph-index {
    grid-template-columns: repeat(4, 1fr);
  }

  .page-home .ph-hero {
    padding-top: calc(var(--header-h) + 28px);
    padding-bottom: 72px;
  }
}

@media (max-width: 480px) {
  .page-home .ph-scale__ticks em {
    display: none;
  }

  .page-home .ph-day__head {
    gap: 8px;
  }

  .page-home .ph-timeline__list {
    padding-left: 14px;
  }

  .page-home .ph-day::before {
    left: -14px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .page-home .ph-scale__pin {
    animation: none;
  }

  .page-home .ph-idx,
  .page-home .ph-link,
  .page-home .ph-day__head {
    transition: none;
  }
}

.page-home {
  --w: 1rem;
}
