.page-home {
  --home-radius: 2px;
  background: var(--clr-space);
  color: var(--clr-white);
  font-family: var(--font-body);
  overflow: hidden;
}

/* 面包屑 */
.page-home .home-breadcrumb {
  max-width: 1240px;
  margin: 0 auto;
  padding: 18px 20px 0;
  border-bottom: 1px solid rgba(138, 138, 138, 0.25);
  font-size: 13px;
  letter-spacing: 0.04em;
}
.page-home .home-breadcrumb .breadcrumb-link {
  color: var(--clr-silver);
  text-decoration: none;
  transition: color 0.2s ease;
}
.page-home .home-breadcrumb .breadcrumb-link:hover,
.page-home .home-breadcrumb .breadcrumb-link:focus {
  color: var(--clr-orange);
}
.page-home .home-breadcrumb .breadcrumb-sep {
  margin: 0 8px;
  color: var(--clr-silver);
}
.page-home .home-breadcrumb .breadcrumb-current {
  color: var(--clr-green);
  font-family: var(--font-head);
  font-weight: 600;
}

/* 首屏 */
.page-home .home-hero {
  position: relative;
  max-width: 1240px;
  margin: 0 auto;
  padding: 56px 20px 72px;
  display: grid;
  gap: 40px;
}
.page-home .home-hero-bg {
  position: absolute;
  top: -30px;
  right: -10%;
  width: min(80vw, 640px);
  height: auto;
  opacity: 0.35;
  mix-blend-mode: screen;
  pointer-events: none;
  z-index: 0;
}
.page-home .home-hero-top {
  position: relative;
  z-index: 1;
  border-bottom: 1px solid rgba(255, 107, 0, 0.45);
  padding-bottom: 28px;
}
.page-home .home-eyebrow {
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--clr-orange);
  text-transform: uppercase;
  margin: 0 0 12px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.page-home .home-eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  background: var(--clr-orange);
  display: inline-block;
}
.page-home .home-hero-title {
  font-family: var(--font-head);
  font-size: clamp(44px, 8vw, 96px);
  font-weight: 900;
  line-height: 0.95;
  margin: 0 0 18px;
  letter-spacing: -0.02em;
}
.page-home .home-hero-title span {
  display: inline-block;
  color: var(--clr-paper);
  background: linear-gradient(100deg, var(--clr-orange) 0%, var(--clr-orange) 100%);
  padding: 0 0.12em;
  transform: skewX(-8deg);
  box-shadow: 0 0 0 rgba(255, 107, 0, 0);
}
.page-home .home-hero-sub {
  font-size: 16px;
  line-height: 1.8;
  color: var(--clr-silver);
  max-width: 520px;
  margin: 0 0 24px;
}
.page-home .home-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.page-home .home-hero-actions .btn {
  padding: 14px 20px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  border: 1px solid transparent;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: transform 0.15s ease, border-color 0.2s ease, background 0.2s ease;
}
.page-home .home-hero-actions .btn:active {
  transform: translateY(2px);
}
.page-home .home-hero-actions .btn--primary {
  background: var(--clr-orange);
  color: var(--clr-space-deep);
  border-color: var(--clr-orange);
}
.page-home .home-hero-actions .btn--primary:hover,
.page-home .home-hero-actions .btn--primary:focus {
  background: transparent;
  color: var(--clr-orange);
}
.page-home .home-hero-actions .btn--ghost {
  background: transparent;
  color: var(--clr-white);
  border-color: rgba(255, 255, 255, 0.4);
}
.page-home .home-hero-actions .btn--ghost:hover,
.page-home .home-hero-actions .btn--ghost:focus {
  border-color: var(--clr-green);
  color: var(--clr-green);
}

/* 首屏左右分栏 */
.page-home .home-hero-split {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 40px;
}
.page-home .home-mini-timeline,
.page-home .home-mini-dash {
  min-width: 0;
}
.page-home .home-section-head {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 20px;
}
.page-home .home-section-index {
  font-family: var(--font-head);
  font-size: 30px;
  font-weight: 900;
  line-height: 1;
  color: var(--clr-orange);
  transform: skewX(-8deg);
  display: inline-block;
  background: rgba(255, 107, 0, 0.08);
  padding: 6px 8px;
}
.page-home .home-section-title {
  font-family: var(--font-head);
  font-size: 24px;
  font-weight: 800;
  line-height: 1.2;
  margin: 0 0 6px;
}
.page-home .home-section-sub {
  font-size: 14px;
  line-height: 1.7;
  color: var(--clr-silver);
  margin: 0;
}

/* 时间轴 */
.page-home .home-timeline {
  position: relative;
  padding: 0;
  margin: 0;
}
.page-home .home-timeline::before {
  content: "";
  position: absolute;
  left: 6px;
  top: 8px;
  bottom: 8px;
  border-left: 1px dashed rgba(57, 255, 20, 0.35);
}
.page-home .home-match {
  position: relative;
  padding-left: 28px;
  margin-bottom: 12px;
  border: 1px solid transparent;
  transition: border-color 0.2s ease;
}
.page-home .home-match::before {
  content: "";
  position: absolute;
  left: 0;
  top: 16px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--clr-orange);
  border: 3px solid var(--clr-space);
  box-shadow: 0 0 0 2px var(--clr-orange);
  z-index: 1;
}
.page-home .home-match[open]::before {
  background: var(--clr-green);
  box-shadow: 0 0 0 2px var(--clr-green), 0 0 16px rgba(57, 255, 20, 0.6);
}
.page-home .home-match:hover,
.page-home .home-match:focus-within {
  border-color: rgba(255, 107, 0, 0.5);
}
.page-home .home-match-row {
  list-style: none;
  display: grid;
  grid-template-columns: auto auto 1fr auto;
  gap: 10px;
  align-items: center;
  padding: 14px 12px;
  background: rgba(29, 59, 95, 0.28);
  cursor: pointer;
  border-left: 2px solid var(--clr-orange);
  transition: background 0.2s ease;
}
.page-home .home-match-row::-webkit-details-marker {
  display: none;
}
.page-home .home-match-row:hover,
.page-home .home-match[open] .home-match-row {
  background: rgba(255, 107, 0, 0.08);
}
.page-home .home-match-id {
  font-family: var(--font-head);
  font-weight: 800;
  color: var(--clr-green);
  font-size: 14px;
}
.page-home .home-match-tag {
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 700;
  color: var(--clr-space-deep);
  background: var(--clr-paper);
  padding: 2px 6px;
  letter-spacing: 0.05em;
}
.page-home .home-match-name {
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 600;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.page-home .home-match-score {
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 900;
  color: var(--clr-white);
}
.page-home .home-match-detail {
  padding: 14px 12px;
  border-left: 2px solid var(--clr-green);
  background: rgba(5, 13, 31, 0.6);
}
.page-home .home-match-detail p {
  margin: 0 0 8px;
  font-size: 14px;
  line-height: 1.7;
  color: var(--clr-silver);
}
.page-home .home-match-link,
.page-home .home-more-link {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 600;
  color: var(--clr-orange);
  text-decoration: none;
  padding-bottom: 2px;
  border-bottom: 1px solid var(--clr-orange);
  transition: color 0.2s ease, border-color 0.2s ease;
}
.page-home .home-match-link:hover,
.page-home .home-match-link:focus,
.page-home .home-more-link:hover,
.page-home .home-more-link:focus {
  color: var(--clr-green);
  border-color: var(--clr-green);
}
.page-home .home-more-link {
  margin-top: 16px;
  font-size: 14px;
}

/* 数据看板 */
.page-home .home-mini-dash {
  position: relative;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 28px;
}
.page-home .home-dash-figure {
  margin: 0 0 16px;
  position: relative;
}
.page-home .home-dash-figure img {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  opacity: 0.45;
  mix-blend-mode: screen;
  clip-path: polygon(0 16px, 100% 0, 100% calc(100% - 16px), 0 100%);
}
.page-home .home-dash-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.page-home .home-dash-card {
  display: flex;
  flex-direction: column;
  min-height: 120px;
  padding: 18px 14px;
  background: linear-gradient(135deg, var(--clr-space-deep), var(--clr-navy));
  border: 1px solid rgba(255, 255, 255, 0.12);
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 12px), calc(100% - 12px) 100%, 0 100%);
  color: var(--clr-white);
  text-decoration: none;
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.page-home .home-dash-card:hover,
.page-home .home-dash-card:focus-within {
  border-color: var(--clr-orange);
  transform: translateY(-2px);
}
.page-home .home-dash-card--main {
  grid-column: 1 / -1;
  background: linear-gradient(135deg, var(--clr-space-deep) 0%, var(--clr-navy) 70%);
}
.page-home .data-tile-label {
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--clr-silver);
  text-transform: uppercase;
}
.page-home .data-tile-value {
  font-family: var(--font-head);
  font-size: 34px;
  font-weight: 900;
  line-height: 1;
  color: var(--clr-green);
  display: block;
  margin: 6px 0 auto;
  transform: skewX(-6deg);
}
.page-home .home-dash-note {
  font-size: 12px;
  line-height: 1.5;
  color: var(--clr-silver);
  margin-top: 8px;
}

/* 战报专栏 */
.page-home .home-section {
  max-width: 1240px;
  margin: 0 auto;
  padding: 60px 20px;
  position: relative;
}
.page-home .home-journal {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.page-home .home-journal-grid {
  display: grid;
  gap: 14px;
}
.page-home .home-journal-card {
  position: relative;
  display: block;
  padding: 26px 22px;
  background: rgba(245, 240, 230, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--clr-white);
  text-decoration: none;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}
.page-home .home-journal-card::after {
  content: "→";
  position: absolute;
  right: 16px;
  bottom: 14px;
  font-family: var(--font-head);
  font-weight: 800;
  color: var(--clr-orange);
  font-size: 20px;
  transition: transform 0.2s ease;
}
.page-home .home-journal-card:hover,
.page-home .home-journal-card:focus {
  border-color: var(--clr-orange);
  background: rgba(255, 107, 0, 0.06);
  transform: translateY(-2px);
}
.page-home .home-journal-card:hover::after,
.page-home .home-journal-card:focus::after {
  transform: translateX(4px);
}
.page-home .home-journal-card-tag {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 800;
  color: var(--clr-green);
  display: block;
  margin-bottom: 8px;
}
.page-home .home-journal-card-note {
  font-size: 14px;
  line-height: 1.7;
  color: var(--clr-silver);
  margin: 0;
}

/* 大屏版与双栏对照 */
.page-home .home-reading {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.page-home .home-reading-grid {
  display: grid;
  gap: 18px;
}
.page-home .home-screen-card,
.page-home .home-compare-card {
  padding: 30px 24px;
  background: rgba(29, 59, 95, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.14);
  min-width: 0;
  transition: border-color 0.2s ease;
}
.page-home .home-screen-card:hover,
.page-home .home-compare-card:hover {
  border-color: rgba(255, 107, 0, 0.6);
}
.page-home .home-reading-title {
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 800;
  margin: 0 0 10px;
}
.page-home .home-reading-text {
  font-size: 15px;
  line-height: 1.8;
  color: var(--clr-silver);
  margin: 0 0 20px;
}
.page-home .home-reading .btn {
  display: inline-flex;
  padding: 12px 18px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.15s ease;
}
.page-home .home-reading .btn:active {
  transform: translateY(2px);
}
.page-home .home-reading .btn--primary {
  background: var(--clr-orange);
  color: var(--clr-space-deep);
  border: 1px solid var(--clr-orange);
}
.page-home .home-reading .btn--primary:hover,
.page-home .home-reading .btn--primary:focus {
  background: transparent;
  color: var(--clr-orange);
}
.page-home .home-reading .btn--ghost {
  background: transparent;
  color: var(--clr-white);
  border: 1px solid rgba(255, 255, 255, 0.4);
}
.page-home .home-reading .btn--ghost:hover,
.page-home .home-reading .btn--ghost:focus {
  border-color: var(--clr-green);
  color: var(--clr-green);
}
.page-home .home-screen-figure {
  margin: 20px 0 0;
}
.page-home .home-screen-figure img {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  clip-path: polygon(0 0, 100% 8px, 100% 100%, 0 calc(100% - 8px));
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.page-home .home-compare-list {
  margin: 0 0 22px;
  padding: 0;
  list-style: none;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}
.page-home .home-compare-list li {
  position: relative;
  padding: 10px 0 10px 22px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 14px;
  color: var(--clr-paper);
}
.page-home .home-compare-list li::before {
  content: "";
  position: absolute;
  left: 4px;
  top: 16px;
  width: 8px;
  height: 8px;
  background: var(--clr-orange);
  transform: rotate(45deg);
}

/* 页尾归档动态 */
.page-home .home-closing {
  position: relative;
  overflow: hidden;
  max-width: 1240px;
  margin: 0 auto;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.page-home .home-closing-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: 0.5;
}
.page-home .home-closing-content {
  position: relative;
  z-index: 1;
  background: rgba(5, 13, 31, 0.72);
  backdrop-filter: blur(2px);
  text-align: center;
  padding: 56px 20px;
}
.page-home .home-closing-kicker {
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--clr-green);
  margin: 0 0 10px;
  text-transform: uppercase;
}
.page-home .home-closing-text {
  font-size: 16px;
  line-height: 1.9;
  color: var(--clr-paper);
  max-width: 640px;
  margin: 0 auto 24px;
}
.page-home .home-closing-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}
.page-home .home-closing-actions .btn {
  display: inline-flex;
  padding: 13px 20px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.15s ease;
}
.page-home .home-closing-actions .btn:active {
  transform: translateY(2px);
}
.page-home .home-closing-actions .btn--primary {
  background: var(--clr-orange);
  color: var(--clr-space-deep);
  border: 1px solid var(--clr-orange);
}
.page-home .home-closing-actions .btn--primary:hover,
.page-home .home-closing-actions .btn--primary:focus {
  background: transparent;
  color: var(--clr-orange);
}
.page-home .home-closing-actions .btn--ghost {
  background: transparent;
  color: var(--clr-white);
  border: 1px solid rgba(255, 255, 255, 0.4);
}
.page-home .home-closing-actions .btn--ghost:hover,
.page-home .home-closing-actions .btn--ghost:focus {
  border-color: var(--clr-green);
  color: var(--clr-green);
}

@media (min-width: 960px) {
  .page-home .home-hero {
    padding-top: 64px;
    padding-bottom: 88px;
  }
  .page-home .home-hero-bg {
    right: -6%;
    width: 560px;
    opacity: 0.5;
  }
  .page-home .home-hero-top {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: end;
  }
  .page-home .home-eyebrow {
    align-self: start;
  }
  .page-home .home-hero-actions {
    justify-content: flex-end;
  }
  .page-home .home-hero-split {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 48px;
    align-items: start;
  }
  .page-home .home-mini-dash {
    margin-top: 48px;
    border-top: none;
    padding-top: 0;
  }
  .page-home .home-mini-timeline {
    margin-bottom: 0;
  }
  .page-home .home-section-title {
    font-size: 28px;
  }
  .page-home .home-journal-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
  }
  .page-home .home-reading-grid {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
  .page-home .home-screen-card {
    margin-top: 0;
  }
  .page-home .home-compare-card {
    margin-top: 28px;
  }
  .page-home .home-closing-content {
    padding: 72px 20px;
  }
}
