.page-home {
  --home-pad: 20px;
  --home-radius: 18px;
  position: relative;
  isolation: isolate;
  color: var(--paper);
  background:
    radial-gradient(1100px 560px at 82% -12%, rgba(255, 106, 43, .10), transparent 62%),
    radial-gradient(900px 520px at 8% 34%, rgba(198, 242, 78, .05), transparent 62%),
    var(--ink-900);
  overflow-x: clip;
}

.page-home::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(30, 44, 85, .5) 1px, transparent 1px),
    linear-gradient(90deg, rgba(30, 44, 85, .5) 1px, transparent 1px);
  background-size: 72px 72px;
  -webkit-mask-image: linear-gradient(180deg, #000 0%, rgba(0, 0, 0, .45) 55%, transparent 100%);
  mask-image: linear-gradient(180deg, #000 0%, rgba(0, 0, 0, .45) 55%, transparent 100%);
  pointer-events: none;
  z-index: 0;
}

.page-home::after {
  content: "";
  position: absolute;
  left: 12px;
  top: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(
    to bottom,
    transparent 0,
    var(--ink-600) 6%,
    var(--ink-600) 94%,
    transparent 100%
  );
  pointer-events: none;
  z-index: 2;
}

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

@media (max-width: 900px) {
  .page-home::after {
    display: none;
  }
}

/* ---------- 面包屑 ---------- */
.page-home .home-crumb {
  max-width: var(--max);
  margin: 0 auto;
  padding: 22px var(--home-pad) 0;
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--ink-200);
}

.page-home .home-crumb .crumb-sep {
  color: var(--signal);
}

/* ---------- 通用 section ---------- */
.page-home .section {
  max-width: var(--max);
  margin: 0 auto;
  padding: 52px var(--home-pad);
}

@media (min-width: 900px) {
  .page-home .section {
    padding: 86px 32px;
  }
}

.page-home .block-head {
  max-width: 720px;
  margin-bottom: 28px;
}

.page-home .section-title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(26px, 4.4vw, 44px);
  line-height: 1.12;
  letter-spacing: .015em;
  margin: 10px 0 14px;
  color: var(--paper);
}

.page-home .block-lede {
  font-size: 15.5px;
  line-height: 1.8;
  color: var(--ink-200);
  margin: 0;
}

.page-home .link-arrow {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 12.5px;
  letter-spacing: .06em;
  color: var(--signal);
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 106, 43, .45);
  padding-bottom: 2px;
  transition: color .18s var(--ease), border-color .18s var(--ease);
}

.page-home .link-arrow:hover {
  color: var(--verify);
  border-color: rgba(198, 242, 78, .7);
}

/* ---------- 首屏框景 ---------- */
.page-home .hero-frame {
  padding-top: 24px;
}

.page-home .hero-frame__inner {
  position: relative;
  border: 1px solid var(--ink-600);
  border-radius: var(--home-radius);
  padding: 26px var(--home-pad) 30px;
  background: linear-gradient(180deg, rgba(19, 30, 61, .86) 0%, rgba(5, 9, 26, .96) 100%);
  overflow: hidden;
}

.page-home .hero-frame__inner::before,
.page-home .hero-frame__inner::after {
  content: "";
  position: absolute;
  width: 58px;
  height: 2px;
  z-index: 3;
}

.page-home .hero-frame__inner::before {
  top: 0;
  left: 40px;
  background: var(--signal);
}

.page-home .hero-frame__inner::after {
  bottom: 0;
  right: 40px;
  background: var(--verify);
}

.page-home .hero-frame__grid {
  display: grid;
  gap: 30px;
  align-items: end;
}

@media (min-width: 860px) {
  .page-home .hero-frame__inner {
    padding: 44px 40px 46px;
  }

  .page-home .hero-frame__grid {
    grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
    gap: 44px;
  }
}

.page-home .hero-title {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(40px, 8.4vw, 88px);
  line-height: .96;
  letter-spacing: .005em;
  margin: 12px 0 18px;
  color: var(--paper);
  text-shadow: 0 1px 0 rgba(233, 238, 248, .12);
}

.page-home .hero-lede {
  font-size: 15.5px;
  line-height: 1.82;
  color: var(--ink-200);
  margin: 0;
  max-width: 48ch;
}

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

.page-home .hero-metrics {
  display: grid;
  gap: 14px;
}

.page-home .hero-visual {
  margin: 0;
  border-radius: 14px;
  border: 1px solid var(--ink-600);
  overflow: hidden;
}

.page-home .hero-visual img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  filter: saturate(.62) brightness(.82);
}

.page-home .metric-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1px;
  background: var(--ink-600);
  border: 1px solid var(--ink-600);
  border-radius: 12px;
  overflow: hidden;
}

@media (min-width: 460px) {
  .page-home .metric-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.page-home .metric {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 14px 12px;
  background: var(--glass);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}

.page-home .metric-value {
  font-family: var(--font-mono);
  font-size: 32px;
  line-height: 1;
  letter-spacing: .02em;
  color: var(--signal);
}

.page-home .metric-label {
  font-size: 12px;
  line-height: 1.55;
  color: var(--ink-200);
}

/* ---------- 联赛索引 ---------- */
.page-home .league-layout {
  display: grid;
  gap: 20px;
}

@media (min-width: 960px) {
  .page-home .league-layout {
    grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
    gap: 26px;
    align-items: start;
  }
}

.page-home .league-visual {
  margin: 0;
  border-radius: 16px;
  border: 1px solid var(--ink-600);
  overflow: hidden;
}

.page-home .league-visual img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  filter: saturate(.55) brightness(.8);
}

.page-home .league-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: var(--ink-600);
  border: 1px solid var(--ink-600);
  border-radius: 14px;
  overflow: hidden;
}

@media (min-width: 720px) {
  .page-home .league-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.page-home .league-cell {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 16px 14px 18px;
  background: var(--ink-800);
  transition: background .18s var(--ease), box-shadow .18s var(--ease);
}

.page-home .league-cell:hover {
  background: var(--ink-700);
  box-shadow: inset 0 0 0 1px var(--signal);
}

.page-home .league-abbr {
  display: inline-block;
  width: max-content;
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: .2em;
  padding: 3px 7px;
  border: 1px solid var(--ink-600);
  border-radius: 4px;
  color: var(--ink-200);
  background: rgba(5, 9, 26, .6);
}

.page-home .league-name {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 500;
  letter-spacing: .02em;
  margin: 8px 0 0;
  color: var(--paper);
}

.page-home .league-stage {
  margin: 2px 0 0;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: .04em;
  color: var(--verify);
}

.page-home .league-meta {
  margin: 6px 0 0;
  font-size: 12px;
  line-height: 1.65;
  color: var(--ink-200);
}

/* ---------- 转会时间轴 ---------- */
.page-home .timeline-shell {
  position: relative;
  border: 1px solid var(--ink-600);
  border-radius: 16px;
  padding: 26px var(--home-pad) 24px;
  background: linear-gradient(180deg, rgba(11, 19, 43, .78) 0%, rgba(5, 9, 26, .94) 100%);
  overflow: hidden;
}

@media (min-width: 900px) {
  .page-home .timeline-shell {
    padding: 36px 40px 30px;
  }
}

.page-home .timeline-bg {
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: .14;
  pointer-events: none;
  z-index: 0;
}

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

.page-home .timeline {
  position: relative;
  z-index: 1;
  list-style: none;
  margin: 0;
  padding: 4px 0 4px 28px;
}

.page-home .timeline::before {
  content: "";
  position: absolute;
  left: 6px;
  top: 10px;
  bottom: 10px;
  width: 1px;
  background: linear-gradient(
    to bottom,
    var(--signal) 0%,
    var(--verify) 48%,
    rgba(198, 242, 78, 0) 100%
  );
}

.page-home .tl-item {
  position: relative;
  padding-bottom: 16px;
}

.page-home .tl-item:last-child {
  padding-bottom: 0;
}

.page-home .tl-dot {
  position: absolute;
  left: -27px;
  top: 18px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--ink-900);
  border: 2px solid var(--signal);
  box-sizing: border-box;
}

.page-home .tl-dot--pending {
  border-color: var(--signal);
  animation: home-pulse 2.4s var(--ease) infinite;
}

.page-home .tl-dot--fixed {
  border-color: var(--ink-200);
}

@keyframes home-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: .45; }
}

.page-home .tl-card {
  border: 1px solid var(--ink-600);
  border-radius: 12px;
  padding: 16px 16px 14px;
  background: rgba(19, 30, 61, .82);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  transition: border-color .18s var(--ease);
}

.page-home .tl-card:hover {
  border-color: var(--ink-400);
}

.page-home .tl-meta {
  margin: 0 0 6px;
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: .08em;
  color: var(--ink-200);
}

.page-home .tl-title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 500;
  letter-spacing: .02em;
  margin: 0 0 6px;
  color: var(--paper);
}

.page-home .tl-desc {
  margin: 0 0 10px;
  font-size: 13.5px;
  line-height: 1.72;
  color: var(--ink-200);
}

.page-home .tl-foot {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}

.page-home .tl-src {
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: .04em;
  color: var(--ink-200);
}

.page-home .timeline-more {
  position: relative;
  z-index: 1;
  margin: 20px 0 0 28px;
}

/* ---------- 地区分栏 ---------- */
.page-home .region-visual {
  margin: 0 0 22px;
  border-radius: 16px;
  border: 1px solid var(--ink-600);
  overflow: hidden;
}

.page-home .region-visual img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  filter: saturate(.5) brightness(.78);
}

.page-home .region-grid {
  display: grid;
  gap: 14px;
}

@media (min-width: 760px) {
  .page-home .region-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.page-home .region-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 22px 20px 20px;
  border: 1px solid var(--ink-600);
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(19, 30, 61, .66) 0%, rgba(5, 9, 26, .92) 100%);
}

.page-home .region-pin {
  width: max-content;
}

.page-home .region-card h3 {
  font-family: var(--font-display);
  font-size: 23px;
  font-weight: 500;
  letter-spacing: .02em;
  margin: 0;
  color: var(--paper);
}

.page-home .region-card p {
  margin: 0;
  font-size: 14px;
  line-height: 1.78;
  color: var(--ink-200);
}

.page-home .region-card .link-arrow {
  margin-top: 4px;
}

/* ---------- 字段速览 ---------- */
.page-home .field-grid {
  display: grid;
  gap: 12px;
}

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

@media (min-width: 1000px) {
  .page-home .field-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.page-home .field-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 24px 18px 22px;
  border: 1px solid var(--ink-600);
  border-radius: 14px;
  background: var(--ink-800);
  overflow: hidden;
}

.page-home .field-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 18px;
  width: 34px;
  height: 2px;
  background: var(--ink-400);
}

.page-home .field-card--more {
  border-color: rgba(255, 106, 43, .55);
  background: linear-gradient(180deg, rgba(255, 106, 43, .10) 0%, rgba(5, 9, 26, .94) 100%);
}

.page-home .field-card--more::before {
  background: var(--signal);
}

.page-home .field-no {
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: .18em;
  color: var(--ink-200);
}

.page-home .field-card h3 {
  font-family: var(--font-display);
  font-size: 21px;
  font-weight: 500;
  letter-spacing: .02em;
  margin: 6px 0 2px;
  color: var(--paper);
}

.page-home .field-card p {
  margin: 0;
  font-size: 13.5px;
  line-height: 1.75;
  color: var(--ink-200);
}

.page-home .field-card .link-arrow {
  margin-top: 8px;
}

/* ---------- 起始路径 ---------- */
.page-home .start-block {
  padding-bottom: 78px;
}

.page-home .start-grid {
  display: grid;
  gap: 14px;
  margin-top: 6px;
}

@media (min-width: 760px) {
  .page-home .start-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.page-home .start-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 26px 22px 22px;
  border: 1px solid var(--ink-600);
  border-radius: 16px;
  background: rgba(11, 19, 43, .66);
  text-decoration: none;
  color: inherit;
  transition: transform .18s var(--ease), border-color .18s var(--ease), background .18s var(--ease);
}

.page-home .start-card:hover,
.page-home .start-card:focus-visible {
  transform: translateY(-2px);
  border-color: var(--signal);
  background: rgba(19, 30, 61, .86);
}

.page-home .start-card--signal {
  border-color: rgba(255, 106, 43, .7);
  box-shadow: inset 0 0 0 1px rgba(255, 106, 43, .2);
}

.page-home .start-no {
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: .2em;
  color: var(--ink-200);
}

.page-home .start-card h3 {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 500;
  letter-spacing: .02em;
  margin: 0;
  color: var(--paper);
}

.page-home .start-card p {
  margin: 0;
  font-size: 14px;
  line-height: 1.78;
  color: var(--ink-200);
}

.page-home .start-go {
  margin-top: auto;
  padding-top: 12px;
  font-family: var(--font-mono);
  font-size: 12.5px;
  letter-spacing: .05em;
  color: var(--signal);
}

@media (prefers-reduced-motion: reduce) {
  .page-home *,
  .page-home *::before,
  .page-home *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }

  .page-home .tl-dot--pending {
    animation: none;
    opacity: 1;
  }
}
