.page-home {
  --home-cut: var(--radius-cut);
  --home-ease: var(--ease);
  background: var(--color-off-white);
  color: var(--color-black);
  font-family: var(--font-body);
  overflow-x: hidden;
  line-height: 1.6;
}
.page-home *,
.page-home *::before,
.page-home *::after {
  box-sizing: border-box;
}
.page-home .container {
  width: 100%;
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: 20px;
}
.page-home img {
  max-width: 100%;
  height: auto;
}
.page-home a {
  color: inherit;
}
.page-home .section-block {
  padding: 56px 0;
}
.page-home .section-head {
  display: grid;
  gap: 20px;
  margin-bottom: 32px;
}
.page-home .section-head-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.page-home .section-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  height: 36px;
  padding: 0 12px;
  margin-bottom: 10px;
  border: 1px solid var(--color-silver);
  border-radius: 14px 6px 14px 6px;
  background: var(--color-accent-soft);
  font-family: var(--font-number);
  font-size: 14px;
  font-weight: 700;
  color: var(--color-accent);
}
.page-home .section-index.is-light {
  background: rgba(255, 107, 0, 0.2);
  border-color: rgba(255, 255, 255, 0.24);
}
.page-home .section-kicker {
  margin: 0 0 6px;
  font-family: var(--font-number);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-accent);
}
.page-home .section-kicker.is-light {
  color: var(--color-accent);
}
.page-home .section-title {
  margin: 0;
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 30px;
  line-height: 1.18;
  letter-spacing: -0.02em;
  color: var(--color-black);
}
.page-home .section-title.is-light {
  color: var(--color-white);
}
.page-home .section-sub {
  margin: 0;
  font-size: 15px;
  line-height: 1.75;
  color: var(--color-gray);
  max-width: 68ch;
}
.page-home .section-sub.is-light {
  color: var(--color-muted);
}

/* ===== 首屏：乐鱼官网登录入口 ===== */
.page-home .home-hero {
  position: relative;
  background: linear-gradient(135deg, #060c1f 0%, var(--color-primary) 58%, rgba(255, 107, 0, 0.22) 130%);
  color: var(--color-white);
  overflow: hidden;
  padding: 34px 0 0;
  border-radius: 0 0 40px 0;
}
.page-home .hero-speed-lines {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: repeating-linear-gradient(112deg, transparent 0, transparent 40px, rgba(192, 192, 192, 0.16) 40px, rgba(255, 255, 255, 0.04) 52px, transparent 52px, transparent 92px);
  transform: skewX(-8deg) scale(1.05);
}
.page-home .hero-accent-block {
  position: absolute;
  right: -140px;
  top: 12%;
  width: 280px;
  height: 280px;
  border: 2px solid rgba(255, 107, 0, 0.45);
  border-radius: 48px 12px 48px 12px;
  transform: rotate(28deg);
  pointer-events: none;
}
.page-home .breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-number);
  font-size: 12px;
  color: var(--color-muted);
  margin-bottom: 28px;
  position: relative;
  z-index: 1;
}
.page-home .breadcrumb-sep {
  color: var(--color-silver);
}
.page-home .breadcrumb-here {
  color: var(--color-accent);
}
.page-home .hero-grid {
  display: grid;
  gap: 28px;
  position: relative;
  z-index: 1;
}
.page-home .hero-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.page-home .hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 14px;
  padding: 6px 14px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  font-family: var(--font-number);
  font-size: 12px;
  letter-spacing: 0.08em;
  color: var(--color-silver);
}
.page-home .kicker-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-accent);
  box-shadow: 0 0 10px rgba(255, 107, 0, 0.8);
}
.page-home .hero-title {
  margin: 0 0 18px;
  font-family: var(--font-heading);
  font-style: italic;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--color-white);
}
.page-home .hero-title-primary {
  display: block;
  font-size: clamp(34px, 8vw, 62px);
}
.page-home .hero-title-divider {
  display: none;
}
.page-home .hero-title-sub {
  display: block;
  margin-top: 12px;
  font-family: var(--font-body);
  font-style: normal;
  font-weight: 500;
  font-size: clamp(15px, 2.4vw, 22px);
  color: var(--color-silver);
  letter-spacing: 0.01em;
}
.page-home .hero-desc {
  margin: 0 0 24px;
  max-width: 56ch;
  font-size: 15px;
  line-height: 1.8;
  color: var(--color-muted);
}
.page-home .hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 26px;
}
.page-home .btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  border: none;
  border-radius: 12px 6px 12px 6px;
  background: var(--color-accent);
  color: var(--color-white);
  font-family: var(--font-heading);
  font-size: 15px;
  font-style: italic;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.2s var(--home-ease), transform 0.2s var(--home-ease);
}
.page-home .btn-primary:hover {
  background: #ff8426;
  transform: translateY(-2px);
}
.page-home .btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 22px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 12px 6px 12px 6px;
  background: transparent;
  color: var(--color-white);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: border-color 0.2s var(--home-ease), background 0.2s var(--home-ease);
}
.page-home .btn-secondary:hover {
  border-color: var(--color-accent);
  background: rgba(255, 107, 0, 0.12);
}
.page-home .btn-link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 11px 8px;
  color: var(--color-silver);
  font-size: 14px;
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
.page-home .btn-link-arrow::after {
  content: "→";
  color: var(--color-accent);
}
.page-home .hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.page-home .stat-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  font-size: 13px;
  color: var(--color-muted);
}
.page-home .stat-pill b {
  font-family: var(--font-number);
  font-size: 15px;
  color: var(--color-accent);
}
.page-home .hero-media {
  position: relative;
}
.page-home .hero-img {
  display: block;
  width: 100%;
  max-width: 420px;
  margin-inline: auto;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 28px 12px 28px 12px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.45);
}
.page-home .hero-dock {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 34px;
  padding: 20px 0 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  position: relative;
  z-index: 1;
}
.page-home .dock-cell {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: var(--color-white);
  font-size: 13px;
  text-decoration: none;
  transition: background 0.2s var(--home-ease), border-color 0.2s var(--home-ease), color 0.2s var(--home-ease);
}
.page-home .dock-cell:hover {
  background: var(--color-accent);
  border-color: var(--color-accent);
  color: var(--color-primary-deep);
}
.page-home .dock-no {
  font-family: var(--font-number);
  font-size: 12px;
  color: var(--color-accent);
}
.page-home .dock-cell:hover .dock-no {
  color: var(--color-primary-deep);
}

/* ===== 赛事日历：苹果查赛程乐鱼官网 ===== */
.page-home .home-calendar {
  background: var(--color-white);
}
.page-home .filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
}
.page-home .filter-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 18px;
  border: 1px solid var(--color-gray-light);
  border-radius: 10px 4px 10px 4px;
  background: var(--color-off-white);
  color: var(--color-gray);
  font-size: 14px;
  cursor: pointer;
  transition: all 0.2s var(--home-ease);
}
.page-home .filter-btn.is-active {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: var(--color-white);
}
.page-home .filter-btn:hover {
  border-color: var(--color-accent);
  color: var(--color-accent);
}
.page-home .filter-btn.is-active:hover {
  color: var(--color-white);
}
.page-home .match-featured {
  display: grid;
  gap: 20px;
  padding: 0 0 32px;
  margin-bottom: 16px;
  border-bottom: 1px solid var(--color-gray-light);
}
.page-home .match-featured-media {
  position: relative;
  border-radius: 18px 8px 18px 8px;
  overflow: hidden;
  background: var(--color-primary);
}
.page-home .match-featured-media img {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}
.page-home .match-featured-body {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.page-home .featured-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 10px;
  font-family: var(--font-number);
  font-size: 12px;
  letter-spacing: 0.12em;
  color: var(--color-accent);
}
.page-home .label-pin {
  width: 8px;
  height: 8px;
  background: var(--color-accent);
  border-radius: 2px;
  transform: rotate(45deg);
}
.page-home .featured-title {
  margin: 0 0 10px;
  font-family: var(--font-heading);
  font-size: 26px;
  line-height: 1.2;
  color: var(--color-black);
}
.page-home .featured-title em {
  color: var(--color-accent);
  font-family: var(--font-number);
  font-style: normal;
  font-size: 16px;
  margin-inline: 4px;
  vertical-align: middle;
}
.page-home .featured-meta {
  margin: 0 0 14px;
  font-family: var(--font-number);
  font-size: 13px;
  color: var(--color-gray);
}
.page-home .featured-points {
  margin: 0 0 18px;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
}
.page-home .featured-points li {
  position: relative;
  padding-left: 18px;
  font-size: 14px;
  color: var(--color-gray);
}
.page-home .featured-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 8px;
  height: 2px;
  background: var(--color-accent);
}
.page-home .featured-foot {
  display: flex;
  align-items: center;
  gap: 16px;
}
.page-home .arrow-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  color: var(--color-primary);
  text-decoration: none;
}
.page-home .arrow-link::after {
  content: "→";
  color: var(--color-accent);
  transition: transform 0.2s var(--home-ease);
}
.page-home .arrow-link:hover::after {
  transform: translateX(4px);
}
.page-home .match-list {
  display: grid;
  gap: 14px;
}
.page-home .match-card {
  display: grid;
  gap: 10px;
  padding: 18px;
  background: var(--color-off-white);
  border: 1px solid var(--color-gray-light);
  border-radius: 18px 8px 18px 8px;
  position: relative;
  overflow: hidden;
  transition: transform 0.2s var(--home-ease), box-shadow 0.2s var(--home-ease);
}
.page-home .match-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: var(--color-accent);
  border-radius: 0 4px 4px 0;
}
.page-home .match-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-light);
}
.page-home .match-league-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.page-home .league-tag {
  display: inline-flex;
  align-items: center;
  padding: 3px 10px;
  border-radius: 999px;
  background: var(--color-primary);
  color: var(--color-white);
  font-size: 12px;
  font-weight: 700;
}
.page-home .match-time {
  font-family: var(--font-number);
  font-size: 12px;
  color: var(--color-gray);
}
.page-home .match-teams {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.page-home .team-name {
  font-family: var(--font-heading);
  font-size: 16px;
  color: var(--color-black);
}
.page-home .team-divider {
  font-family: var(--font-number);
  font-size: 13px;
  color: var(--color-accent);
}
.page-home .match-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.page-home .match-state {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--color-gray);
}
.page-home .status-dot {
  display: inline-block;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--color-accent);
  box-shadow: 0 0 0 rgba(255, 107, 0, 0.5);
  animation: leyu-pulse 2s infinite;
}
.page-home .match-state.ok .status-dot {
  background: #23c46b;
  box-shadow: 0 0 0 rgba(35, 196, 107, 0.5);
}
.page-home .match-state.wait .status-dot {
  background: var(--color-silver);
  box-shadow: none;
  animation: none;
}
.page-home .bookmark-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1px solid var(--color-gray-light);
  border-radius: 50%;
  background: var(--color-white);
  color: var(--color-primary);
  cursor: pointer;
  transition: all 0.2s var(--home-ease);
}
.page-home .bookmark-btn:hover {
  background: var(--color-accent);
  border-color: var(--color-accent);
  color: var(--color-white);
}
.page-home .bookmark-btn svg,
.page-home .step-icon {
  width: 18px;
  height: 18px;
}
.page-home .calendar-foot {
  margin-top: 28px;
  text-align: right;
}

/* ===== 最新战报：乐鱼官网战报专栏下载 ===== */
.page-home .home-reports {
  background: var(--color-off-white);
}
.page-home .reports-layout {
  display: grid;
  gap: 32px;
}
.page-home .reports-aside {
  display: grid;
  gap: 16px;
  align-content: start;
}
.page-home .reports-card-image {
  border-radius: 20px 8px 20px 8px;
  overflow: hidden;
  border: 1px solid var(--color-gray-light);
  background: var(--color-white);
}
.page-home .reports-card-image img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.page-home .reports-card-stat {
  display: flex;
  align-items: baseline;
  gap: 12px;
  padding: 18px;
  background: var(--color-primary);
  border-radius: 16px 6px 16px 6px;
  color: var(--color-white);
}
.page-home .rc-num {
  font-family: var(--font-number);
  font-size: 38px;
  font-weight: 700;
  color: var(--color-accent);
}
.page-home .rc-label {
  font-size: 14px;
  color: var(--color-muted);
}
.page-home .reports-aside-note {
  margin: 0;
  font-size: 13px;
  line-height: 1.7;
  color: var(--color-gray);
}
.page-home .report-list {
  display: grid;
  gap: 4px;
}
.page-home .report-item {
  border-bottom: 1px solid var(--color-gray-light);
  padding: 16px 4px;
  transition: background 0.25s var(--home-ease), padding 0.25s var(--home-ease), border-radius 0.25s var(--home-ease);
}
.page-home .report-head {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 14px;
  align-items: center;
}
.page-home .report-no {
  font-family: var(--font-number);
  font-size: 22px;
  font-weight: 700;
  color: var(--color-accent);
}
.page-home .report-title {
  margin: 0 0 4px;
  font-size: 16px;
  font-weight: 700;
  color: var(--color-black);
}
.page-home .report-meta {
  margin: 0;
  font-family: var(--font-number);
  font-size: 12px;
  color: var(--color-gray);
}
.page-home .report-open {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  border: 1px solid var(--color-gray-light);
  border-radius: 10px 4px 10px 4px;
  background: var(--color-white);
  font-size: 13px;
  color: var(--color-primary);
  text-decoration: none;
}
.page-home .report-open:hover {
  border-color: var(--color-accent);
  color: var(--color-accent);
}
.page-home .report-detail {
  display: none;
  padding-top: 16px;
  font-size: 14px;
  line-height: 1.8;
  color: var(--color-gray);
}
.page-home .report-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 14px;
}
.page-home .report-collapse {
  display: none;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--color-accent);
  text-decoration: none;
}
.page-home .report-item:target {
  background: var(--color-accent-soft);
  border-radius: 18px;
  padding: 16px 18px;
  border-bottom-color: transparent;
}
.page-home .report-item:target .report-detail {
  display: block;
}
.page-home .report-item:target .report-open {
  display: none;
}
.page-home .report-item:target .report-collapse {
  display: inline-flex;
}

/* ===== 版本更新提示：简体版乐鱼版本说明 ===== */
.page-home .home-version {
  background: var(--color-white);
}
.page-home .version-panel {
  display: grid;
  overflow: hidden;
  border-radius: 24px 10px 24px 10px;
  background: var(--color-black);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: var(--shadow);
}
.page-home .version-visual {
  position: relative;
  min-height: 200px;
  overflow: hidden;
}
.page-home .version-visual img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 200px;
  object-fit: cover;
  opacity: 0.75;
}
.page-home .version-console {
  display: flex;
  flex-direction: column;
  padding: 22px;
  gap: 0;
}
.page-home .console-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.page-home .led {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #23c46b;
  box-shadow: 0 0 10px rgba(35, 196, 107, 0.7);
  animation: leyu-pulse 2s infinite;
}
.page-home .console-title {
  flex: 1;
  font-family: var(--font-heading);
  font-size: 16px;
  color: var(--color-white);
  letter-spacing: 0.02em;
}
.page-home .console-badge {
  padding: 4px 12px;
  border-radius: 999px;
  background: rgba(35, 196, 107, 0.16);
  border: 1px solid rgba(35, 196, 107, 0.4);
  color: #23c46b;
  font-family: var(--font-number);
  font-size: 12px;
}
.page-home .console-body {
  padding: 8px 0;
}
.page-home .console-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.page-home .console-label {
  font-size: 14px;
  color: var(--color-muted);
  white-space: nowrap;
}
.page-home .console-value {
  font-family: var(--font-number);
  font-size: 14px;
  color: var(--color-white);
  text-align: right;
}
.page-home .console-foot {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 18px;
}
.page-home .btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 18px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 10px 4px 10px 4px;
  color: var(--color-white);
  font-size: 14px;
  text-decoration: none;
  transition: border-color 0.2s var(--home-ease), color 0.2s var(--home-ease);
}
.page-home .btn-ghost:hover {
  border-color: var(--color-accent);
  color: var(--color-accent);
}

/* ===== 收藏功能说明：收藏体育赛事资料 ===== */
.page-home .home-collection {
  background: var(--color-off-white);
}
.page-home .collect-steps {
  display: grid;
  gap: 20px;
}
.page-home .step-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 28px 24px 24px;
  background: var(--color-white);
  border: 1px solid var(--color-gray-light);
  border-radius: 22px 8px 22px 8px;
  transition: transform 0.2s var(--home-ease), box-shadow 0.2s var(--home-ease);
}
.page-home .step-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-light);
}
.page-home .step-no {
  position: absolute;
  right: 18px;
  top: 16px;
  font-family: var(--font-number);
  font-size: 40px;
  font-weight: 700;
  color: transparent;
  -webkit-text-stroke: 1px var(--color-accent);
}
.page-home .step-icon {
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  padding: 8px;
  border-radius: 12px 4px 12px 4px;
  background: var(--color-accent-soft);
  color: var(--color-accent);
}
.page-home .step-title {
  margin: 0 0 8px;
  font-family: var(--font-heading);
  font-size: 18px;
  color: var(--color-black);
}
.page-home .step-desc {
  margin: 0;
  font-size: 14px;
  line-height: 1.7;
  color: var(--color-gray);
}
.page-home .collection-note {
  margin: 26px 0 0;
  padding: 16px 20px;
  border-left: 4px solid var(--color-accent);
  background: var(--color-white);
  border-radius: 4px 12px 4px 12px;
  font-size: 13px;
  line-height: 1.7;
  color: var(--color-gray);
}

/* ===== 数据概览 ===== */
.page-home .home-stats {
  background: linear-gradient(120deg, #060c1f 0%, var(--color-primary) 68%, rgba(255, 107, 0, 0.14) 130%);
  color: var(--color-white);
  border-radius: 0 40px 0 40px;
}
.page-home .stats-head {
  margin-bottom: 36px;
}
.page-home .stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
.page-home .stat-cell {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 130px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px 6px 18px 6px;
  background: rgba(255, 255, 255, 0.06);
  overflow: hidden;
}
.page-home .stat-cell::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--color-accent), transparent);
}
.page-home .stat-num {
  font-family: var(--font-number);
  font-size: 38px;
  font-weight: 700;
  line-height: 1.1;
  color: var(--color-accent);
  letter-spacing: -0.02em;
}
.page-home .stat-label {
  margin-top: 6px;
  font-size: 13px;
  color: var(--color-muted);
}
.page-home .stats-note {
  margin: 24px 0 0;
  font-size: 13px;
  color: var(--color-muted);
  text-align: center;
}

/* ===== 延伸阅读 ===== */
.page-home .home-lead {
  background: var(--color-white);
}
.page-home .lead-panel {
  display: grid;
  gap: 24px;
  padding: 34px 26px;
  background: var(--color-off-white);
  border: 1px solid var(--color-gray-light);
  border-radius: 24px 8px 24px 8px;
}
.page-home .lead-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.page-home .lead-title {
  margin: 0 0 12px;
  font-family: var(--font-heading);
  font-size: 24px;
  line-height: 1.25;
  color: var(--color-black);
}
.page-home .lead-desc {
  margin: 0;
  font-size: 14px;
  line-height: 1.75;
  color: var(--color-gray);
  max-width: 58ch;
}
.page-home .lead-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
}
.page-home .btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 22px;
  border: 1px solid var(--color-primary);
  border-radius: 12px 6px 12px 6px;
  color: var(--color-primary);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s var(--home-ease);
}
.page-home .btn-outline:hover {
  background: var(--color-primary);
  color: var(--color-white);
}

/* ===== 动效定义 ===== */
@keyframes leyu-pulse {
  0%, 100% {
    opacity: 1;
    box-shadow: 0 0 0 0 rgba(35, 196, 107, 0.35);
  }
  50% {
    opacity: 0.75;
    box-shadow: 0 0 0 6px rgba(35, 196, 107, 0);
  }
}
@keyframes leyu-rise {
  from {
    transform: translateY(18px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
.page-home [data-reveal] {
  animation: leyu-rise 0.5s var(--home-ease) both;
}
.page-home .home-hero [data-reveal] {
  animation: none;
}

/* ===== 桌面端增强 ===== */
@media (min-width: 768px) {
  .page-home .section-block {
    padding: 72px 0;
  }
  .page-home .section-title {
    font-size: 38px;
  }
  .page-home .section-head {
    grid-template-columns: 1fr 1fr;
    align-items: end;
  }
  .page-home .section-head-left {
    align-items: flex-start;
  }
  .page-home .section-sub {
    justify-self: end;
    text-align: left;
  }
  .page-home .hero-grid {
    grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.9fr);
    gap: 48px;
    align-items: center;
  }
  .page-home .hero-img {
    max-width: 100%;
  }
  .page-home .hero-dock {
    flex-wrap: nowrap;
    justify-content: flex-end;
  }
  .page-home .match-featured {
    grid-template-columns: 260px 1fr;
    gap: 28px;
    align-items: center;
  }
  .page-home .match-featured-media img {
    aspect-ratio: 1 / 1;
  }
  .page-home .match-list {
    grid-template-columns: repeat(2, 1fr);
  }
  .page-home .reports-layout {
    grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.35fr);
    gap: 40px;
  }
  .page-home .version-panel {
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  }
  .page-home .version-visual,
  .page-home .version-visual img {
    min-height: 100%;
  }
  .page-home .collect-steps {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
  .page-home .step-card:nth-child(2) {
    transform: translateY(14px);
  }
  .page-home .step-card:nth-child(2):hover {
    transform: translateY(10px);
  }
  .page-home .stats-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
  }
  .page-home .stat-num {
    font-size: 46px;
  }
  .page-home .lead-panel {
    grid-template-columns: 1.4fr auto;
    align-items: center;
    gap: 32px;
    padding: 44px 40px;
  }
}
@media (min-width: 1024px) {
  .page-home .home-hero {
    padding: 44px 0 0;
  }
  .page-home .hero-title-primary {
    font-size: 62px;
  }
  .page-home .hero-title-sub {
    font-size: 22px;
  }
  .page-home .hero-desc {
    font-size: 16px;
  }
  .page-home .match-list {
    grid-template-columns: repeat(3, 1fr);
  }
  .page-home .report-list {
    gap: 8px;
  }
  .page-home .version-console {
    padding: 32px;
  }
  .page-home .stat-num {
    font-size: 54px;
  }
}
