/* ===== 首页专属样式 · page-home ===== */
.page-home {
  --home-gold: var(--sf-gold);
  --home-green: var(--sf-green);
  --home-green-light: var(--sf-green-light);
  --home-ink: var(--sf-ink);
  --home-cream: var(--sf-cream);
  --home-navy: var(--sf-navy);
  --home-shadow: 6px 6px 0 rgba(11, 61, 46, 0.18);
  --home-shadow-lg: 10px 10px 0 rgba(11, 61, 46, 0.22);
  background: var(--home-cream);
  color: var(--home-ink);
  overflow-x: hidden;
}

/* ---------- 首屏对角色块 ---------- */
.page-home .hero-split {
  position: relative;
  isolation: isolate;
  background: var(--home-green);
  overflow: hidden;
}

.page-home .hero-bg-image {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
}

.page-home .hero-bg-image img {
  width: 100%;
  height: 100%;
  max-width: 100%;
  object-fit: cover;
  filter: saturate(0.7) contrast(1.08) brightness(0.55);
  display: block;
}

.page-home .hero-grid-mask {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background-image:
    linear-gradient(rgba(245, 241, 232, 0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(245, 241, 232, 0.1) 1px, transparent 1px);
  background-size: 44px 44px;
  mix-blend-mode: overlay;
}

.page-home .coord-label {
  position: absolute;
  z-index: 2;
  font-family: var(--sf-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  color: rgba(245, 241, 232, 0.66);
  text-transform: uppercase;
  pointer-events: none;
}

.page-home .coord-tl {
  left: 14px;
  top: 88px;
  writing-mode: vertical-rl;
}

.page-home .coord-br {
  right: 14px;
  bottom: 18px;
  writing-mode: vertical-rl;
}

.page-home .hero-container {
  display: flex;
  flex-direction: column;
  padding-top: 0;
  padding-bottom: 0;
}

.page-home .hero-panel-primary {
  background: var(--home-green);
  border: 2px solid rgba(245, 241, 232, 0.28);
  border-right: 0;
  padding: 18px 16px 20px;
  color: var(--home-cream);
  box-shadow: var(--home-shadow-lg);
}

.page-home .hero-panel-accent {
  background: var(--home-gold);
  position: relative;
  padding: 20px 16px 24px;
  color: #1f1a0a;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 8% 100%);
  box-shadow: var(--home-shadow-lg);
}

.page-home .breadcrumb {
  display: flex;
  gap: 6px;
  font-size: 12px;
  font-weight: 300;
  letter-spacing: 0.05em;
  opacity: 0.75;
}

.page-home .breadcrumb-item + .breadcrumb-item::before {
  content: "/";
  margin-right: 6px;
  color: var(--sf-gold-light);
}

.page-home .hero-title {
  font-size: clamp(28px, 5.4vw, 46px);
  font-weight: 900;
  line-height: 1.12;
  letter-spacing: 0.01em;
  margin: 16px 0 8px;
  color: var(--home-cream);
}

.page-home .hero-q {
  font-size: clamp(16px, 2vw, 22px);
  font-weight: 700;
  color: var(--sf-gold-light);
  letter-spacing: 0.14em;
  margin-bottom: 14px;
  border-left: 4px solid var(--sf-gold);
  padding-left: 10px;
}

.page-home .hero-desc {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(245, 241, 232, 0.86);
  max-width: 760px;
}

/* ---------- 赛程滚动条 ---------- */
.page-home .ticker-wrap {
  margin-top: 22px;
}

.page-home .ticker-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  border-bottom: 1px solid rgba(245, 241, 232, 0.24);
  padding-bottom: 8px;
  margin-bottom: 10px;
}

.page-home .ticker-title {
  font-weight: 900;
  font-size: 15px;
  letter-spacing: 0.05em;
  color: var(--home-cream);
  white-space: nowrap;
}

.page-home .ticker-link {
  color: var(--sf-gold-light);
  font-size: 13px;
  text-decoration: none;
  white-space: nowrap;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease;
}

.page-home .ticker-link:hover {
  border-color: var(--sf-gold-light);
}

.page-home .ticker-viewport {
  overflow: hidden;
  padding: 2px 0 4px;
}

.page-home .ticker-track {
  display: flex;
  gap: 12px;
  width: max-content;
  animation: home-ticker-slide 40s linear infinite;
}

.page-home .ticker-viewport:hover .ticker-track {
  animation-play-state: paused;
}

.page-home .match-row {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(245, 241, 232, 0.08);
  border: 1px solid rgba(245, 241, 232, 0.2);
  padding: 8px 12px;
  font-size: 13px;
  color: var(--home-cream);
}

.page-home .match-row:hover {
  background: rgba(245, 241, 232, 0.15);
}

.page-home .match-league {
  font-size: 11px;
}

.page-home .match-team {
  font-weight: 600;
  white-space: nowrap;
}

.page-home .match-score {
  font-family: var(--sf-mono);
  font-weight: 700;
  font-size: 16px;
  color: var(--sf-gold-light);
  white-space: nowrap;
}

.page-home .score-sep {
  padding: 0 2px;
  color: rgba(245, 241, 232, 0.55);
}

/* ---------- 金色面板 ---------- */
.page-home .accent-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.page-home .live-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  background: #1f1a0a;
  color: var(--sf-gold-light);
  padding: 4px 8px;
}

.page-home .live-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--sf-red);
  animation: home-dot-pulse 1.6s ease-in-out infinite;
}

.page-home .hero-clock {
  font-family: var(--sf-mono);
  font-weight: 700;
  font-size: 20px;
  color: #1f1a0a;
}

.page-home .accent-sub {
  font-size: 15px;
  font-weight: 900;
  letter-spacing: 0.12em;
  margin: 8px 0 0;
}

.page-home .accent-divider {
  height: 4px;
  background: #1f1a0a;
  margin: 16px 0 14px;
}

.page-home .accent-stat-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.page-home .accent-stat {
  background: rgba(31, 26, 10, 0.1);
  border: 2px solid rgba(31, 26, 10, 0.35);
  padding: 12px 10px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.page-home .accent-num {
  font-family: var(--sf-mono);
  font-weight: 700;
  font-size: 28px;
  line-height: 1;
  color: #1f1a0a;
}

.page-home .accent-label {
  font-size: 12px;
  font-weight: 600;
  color: rgba(31, 26, 10, 0.8);
}

.page-home .accent-note {
  font-size: 13px;
  line-height: 1.6;
  margin: 14px 0 12px;
  font-weight: 600;
}

.page-home .accent-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.page-home .accent-actions .btn {
  padding: 9px 14px;
  font-size: 13px;
}

/* ---------- 通用章节 ---------- */
.page-home .section {
  padding: 52px 0;
}

.page-home .section-head {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 12px;
}

.page-home .section-index {
  font-family: var(--sf-mono);
  font-weight: 700;
  font-size: 22px;
  color: var(--sf-gold);
  line-height: 1;
  padding-top: 2px;
}

.page-home .section-title {
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 900;
  color: var(--home-green);
  margin: 0;
  line-height: 1.2;
}

.page-home .section-note {
  margin-left: auto;
  font-size: 12px;
  font-weight: 300;
  letter-spacing: 0.18em;
  color: rgba(45, 45, 45, 0.5);
  writing-mode: vertical-rl;
  height: 66px;
  white-space: nowrap;
}

.page-home .section-lead {
  font-size: 15px;
  line-height: 1.7;
  max-width: 900px;
  margin: 0 0 26px;
  color: rgba(45, 45, 45, 0.8);
}

.page-home .section-head-light .section-title {
  color: var(--home-cream);
}

.page-home .section-head-light .section-note {
  color: rgba(245, 241, 232, 0.55);
}

.page-home .section-lead-light {
  color: rgba(245, 241, 232, 0.78);
}

/* ---------- 01 核心数据仪表盘 ---------- */
.page-home .dashboard-section {
  background: var(--home-cream);
  border-bottom: 2px solid var(--sf-mist);
}

.page-home .dashboard-layout {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.page-home .stat-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.page-home .stat-card {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 16px 14px;
  border: 2px solid var(--home-green);
  min-height: 116px;
  justify-content: center;
  box-shadow: var(--home-shadow);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.page-home .stat-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--home-shadow-lg);
}

.page-home .stat-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(45, 45, 45, 0.72);
}

.page-home .stat-num {
  font-family: var(--sf-mono);
  font-weight: 700;
  font-size: clamp(26px, 4vw, 34px);
  color: var(--home-green);
  line-height: 1.1;
  position: relative;
  display: inline-block;
  animation: home-num-breathe 2.8s ease-in-out infinite;
}

.page-home .stat-num.gold {
  color: var(--sf-gold);
}

.page-home .stat-num.red {
  color: var(--sf-red);
}

.page-home .stat-foot {
  font-size: 12px;
  color: rgba(45, 45, 45, 0.6);
}

.page-home .dash-media {
  width: 100%;
  max-width: 600px;
  border: 2px solid var(--home-green);
  box-shadow: var(--home-shadow);
}

.page-home .dash-media img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* ---------- 02 红黄牌记录速览 ---------- */
.page-home .cards-section {
  position: relative;
  background: var(--home-green);
}

.page-home .cards-section::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  left: auto;
  width: 18px;
  background: repeating-linear-gradient(180deg, var(--sf-gold) 0 8px, transparent 8px 16px);
  opacity: 0.35;
}

.page-home .split-grid {
  display: grid;
  gap: 18px;
}

.page-home .cards-split {
  grid-template-columns: 1fr;
  margin-bottom: 22px;
}

.page-home .card {
  border: 2px solid var(--home-green);
  box-shadow: var(--home-shadow);
}

.page-home .card-cards-yellow {
  background: var(--home-cream);
  border-color: var(--sf-gold);
  padding: 18px 16px;
}

.page-home .card-cards-red {
  background: var(--home-cream);
  border-color: var(--sf-red);
  padding: 18px 16px;
}

.page-home .block-chip {
  font-size: 12px;
}

.page-home .block-num {
  display: block;
  font-family: var(--sf-mono);
  font-weight: 700;
  font-size: 64px;
  line-height: 1;
  margin: 10px 0 8px;
  color: var(--home-green);
}

.page-home .card-cards-yellow .block-num {
  color: var(--sf-gold);
}

.page-home .card-cards-red .block-num {
  color: var(--sf-red);
}

.page-home .card-cards-yellow p,
.page-home .card-cards-red p {
  font-size: 14px;
  line-height: 1.7;
  margin: 0;
  color: rgba(45, 45, 45, 0.78);
}

.page-home .cards-detail-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: 1fr;
}

.page-home .cards-detail {
  padding: 20px 18px;
  border-color: rgba(245, 241, 232, 0.2);
}

.page-home .cards-detail-title {
  color: var(--home-cream);
  font-size: 18px;
  font-weight: 800;
  margin: 0 0 14px;
  border-left: 4px solid var(--sf-gold);
  padding-left: 10px;
}

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

.page-home .cards-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(245, 241, 232, 0.08);
  border: 1px solid rgba(245, 241, 232, 0.14);
  padding: 8px 10px;
  color: var(--home-cream);
  font-size: 14px;
}

.page-home .card-min {
  min-width: 40px;
  font-weight: 700;
  color: var(--sf-gold-light);
}

.page-home .cards-tip {
  font-size: 13px;
  line-height: 1.6;
  color: rgba(245, 241, 232, 0.66);
  margin-bottom: 14px;
}

.page-home .cards-media {
  width: 100%;
  max-width: 400px;
  border: 2px solid var(--sf-gold);
  box-shadow: var(--home-shadow-lg);
}

.page-home .cards-media img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}

/* ---------- 03 赛事榜单预览 ---------- */
.page-home .ranking-section {
  background: var(--home-cream);
}

.page-home .rank-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: 1fr;
}

.page-home .rank-card {
  padding: 16px 14px;
  display: flex;
  flex-direction: column;
}

.page-home .rank-card-head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 12px;
}

.page-home .rank-card-title {
  margin: 0;
  font-size: 18px;
  font-weight: 900;
  color: var(--home-green);
}

.page-home .card-navy .rank-card-title {
  color: var(--home-cream);
}

.page-home .rank-table {
  width: 100%;
  border-collapse: collapse;
}

.page-home .rank-table th,
.page-home .rank-table td {
  text-align: left;
  padding: 9px 8px;
  font-size: 14px;
  border-bottom: 1px solid var(--sf-mist);
}

.page-home .rank-table th {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: rgba(45, 45, 45, 0.55);
  text-transform: uppercase;
}

.page-home .rank-table tr:last-child td {
  border-bottom: 0;
}

.page-home .data-num {
  font-weight: 700;
  text-align: right;
  color: var(--home-green);
}

.page-home .card-navy .data-num {
  color: var(--sf-gold-light);
}

.page-home .team-rank {
  font-family: var(--sf-mono);
  font-weight: 700;
  font-size: 13px;
  color: rgba(45, 45, 45, 0.45);
}

.page-home .team-rank.top {
  color: var(--sf-gold);
}

.page-home .card-navy .team-rank {
  color: rgba(245, 241, 232, 0.45);
}

.page-home .card-navy .team-rank.top {
  color: var(--sf-gold-light);
}

/* ---------- 04 资讯专栏动态 ---------- */
.page-home .news-section {
  position: relative;
  background: var(--home-navy);
}

.page-home .news-section .section-head-light .section-title {
  color: var(--home-cream);
}

.page-home .news-section .section-lead-light {
  color: rgba(245, 241, 232, 0.7);
}

.page-home .news-timeline {
  display: grid;
  gap: 22px;
  margin-bottom: 24px;
}

.page-home .timeline-item {
  display: grid;
  grid-template-columns: 74px 1fr;
  gap: 14px;
}

.page-home .timeline-label {
  font-family: var(--sf-mono);
  font-weight: 700;
  font-size: 14px;
  color: var(--sf-gold);
  text-align: right;
  padding-top: 8px;
  border-right: 2px solid var(--sf-gold);
  padding-right: 10px;
}

.page-home .timeline-card {
  background: rgba(245, 241, 232, 0.06);
  border: 1px solid rgba(245, 241, 232, 0.16);
  padding: 16px 14px;
  color: rgba(245, 241, 232, 0.82);
  box-shadow: var(--home-shadow);
}

.page-home .timeline-heading {
  color: var(--home-cream);
  font-size: 17px;
  font-weight: 800;
  margin: 8px 0 6px;
  line-height: 1.4;
}

.page-home .timeline-card p {
  font-size: 14px;
  line-height: 1.7;
  margin: 0 0 10px;
}

.page-home .timeline-link {
  color: var(--sf-gold-light);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease;
}

.page-home .timeline-link:hover {
  border-color: var(--sf-gold-light);
}

.page-home .news-more {
  text-align: center;
}

.page-home .news-more .btn {
  border-color: var(--sf-gold);
  color: var(--sf-gold-light);
}

/* ---------- 05 便捷工具区 ---------- */
.page-home .tools-section {
  background: var(--home-cream);
}

.page-home .tools-grid {
  grid-template-columns: 1fr;
}

.page-home .tools-search-card {
  padding: 18px 16px;
}

.page-home .search-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  border: 2px solid var(--home-green);
  background: #fff;
  padding: 8px 12px;
  box-shadow: var(--home-shadow);
}

.page-home .search-icon {
  font-size: 18px;
  color: var(--home-green);
  line-height: 1;
}

.page-home .search-input {
  flex: 1;
  border: 0;
  outline: none;
  background: transparent;
  font-family: var(--sf-font);
  font-size: 16px;
  color: var(--home-ink);
  min-width: 0;
  -webkit-appearance: none;
  appearance: none;
}

.page-home .tools-tip {
  font-size: 13px;
  color: rgba(45, 45, 45, 0.6);
  margin: 12px 0 10px;
}

.page-home .team-filter-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  border: 2px solid var(--sf-mist);
  background: #fff;
}

.page-home .team-filter-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 10px 12px;
  border-bottom: 1px solid var(--sf-mist);
  font-weight: 600;
  font-size: 14px;
}

.page-home .team-filter-item:last-child {
  border-bottom: 0;
}

.page-home .team-filter-item:hover {
  background: var(--sf-gold-light);
}

.page-home .team-alias {
  font-family: var(--sf-mono);
  font-size: 12px;
  color: rgba(45, 45, 45, 0.5);
}

.page-home .team-filter-empty {
  display: none;
  padding: 12px;
  border: 2px dashed var(--sf-gold);
  background: var(--sf-gold-light);
  font-size: 14px;
  color: var(--home-green);
  margin: 10px 0 0;
}

.page-home .tools-fav-card {
  padding: 20px 16px;
  border-color: var(--sf-gold);
  display: flex;
  flex-direction: column;
  gap: 12px;
  color: rgba(245, 241, 232, 0.82);
}

.page-home .fav-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 2px solid var(--sf-gold);
  background: var(--sf-gold);
  color: #1f1a0a;
  font-family: var(--sf-font);
  font-weight: 900;
  font-size: 15px;
  padding: 10px 14px;
  cursor: pointer;
  box-shadow: var(--home-shadow);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  width: -moz-fit-content;
  width: fit-content;
}

.page-home .fav-button:hover {
  transform: translateY(-2px);
  box-shadow: var(--home-shadow-lg);
}

.page-home .fav-button.is-active .fav-star {
  color: var(--sf-red);
}

.page-home .fav-star {
  color: #1f1a0a;
  font-size: 18px;
  transition: color 0.2s ease;
}

.page-home .fav-count {
  font-family: var(--sf-mono);
  font-weight: 700;
  font-size: 17px;
}

.page-home .fav-text {
  letter-spacing: 0.04em;
}

.page-home .tools-fav-card p {
  font-size: 14px;
  line-height: 1.7;
  margin: 0;
}

.page-home .tools-fav-card .btn {
  align-self: flex-start;
}

/* ---------- 06 平台能力导航 ---------- */
.page-home .platform-section {
  position: relative;
  background: linear-gradient(135deg, var(--home-navy) 0%, var(--home-green) 72%, #0a2a20 100%);
  overflow: hidden;
}

.page-home .platform-section .section-head-light .section-title {
  color: var(--home-cream);
}

.page-home .platform-section .section-lead-light {
  color: rgba(245, 241, 232, 0.68);
}

.page-home .platform-nav-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin-bottom: 26px;
}

.page-home .platform-card {
  display: grid;
  grid-template-columns: 40px 1fr auto;
  grid-template-rows: auto auto;
  column-gap: 10px;
  align-items: center;
  background: rgba(245, 241, 232, 0.06);
  border: 2px solid rgba(245, 241, 232, 0.2);
  padding: 16px 14px;
  color: var(--home-cream);
  text-decoration: none;
  box-shadow: var(--home-shadow);
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.page-home .platform-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--home-shadow-lg);
  border-color: var(--sf-gold);
}

.page-home .pc-index {
  grid-row: 1 / 3;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--sf-mono);
  font-weight: 700;
  font-size: 17px;
  color: var(--home-green);
  background: var(--sf-gold);
}

.page-home .pc-title {
  font-size: 17px;
  font-weight: 900;
  letter-spacing: 0.04em;
}

.page-home .pc-desc {
  font-size: 13px;
  line-height: 1.5;
  color: rgba(245, 241, 232, 0.68);
  grid-column: 2 / 3;
}

.page-home .pc-arrow {
  grid-row: 1 / 3;
  grid-column: 3 / 4;
  padding-left: 8px;
  padding-right: 8px;
  color: var(--sf-gold);
  font-size: 20px;
  font-weight: 700;
  transition: transform 0.18s ease;
}

.page-home .platform-card:hover .pc-arrow {
  transform: translateX(4px);
}

.page-home .platform-bottom {
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: flex-start;
}

.page-home .platform-media {
  width: 100%;
  max-width: 300px;
  border: 2px solid var(--sf-gold);
  box-shadow: var(--home-shadow-lg);
}

.page-home .platform-media img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}

.page-home .platform-trust {
  color: rgba(245, 241, 232, 0.82);
  font-size: 14px;
  line-height: 1.8;
  max-width: 720px;
}

.page-home .platform-trust p {
  margin: 0 0 12px;
}

.page-home .trust-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.page-home .trust-links a {
  color: var(--sf-gold-light);
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease;
}

.page-home .trust-links a:hover {
  border-color: var(--sf-gold-light);
}

/* ---------- 动画 ---------- */
@keyframes home-ticker-slide {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

@keyframes home-dot-pulse {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.4;
    transform: scale(0.68);
  }
}

@keyframes home-num-breathe {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.72;
  }
}

/* ---------- 桌面端增强 ---------- */
@media (min-width: 700px) {
  .page-home .hero-panel-primary {
    padding: 28px 28px 26px;
  }

  .page-home .hero-panel-accent {
    padding: 26px 22px 28px;
  }

  .page-home .hero-container {
    display: grid;
    grid-template-columns: minmax(0, 1.6fr) minmax(0, 0.8fr);
    align-items: stretch;
  }

  .page-home .hero-panel-primary,
  .page-home .hero-panel-accent {
    margin: 0;
  }

  .page-home .section {
    padding: 68px 0;
  }

  .page-home .stat-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
  }

  .page-home .stat-card {
    padding: 18px 16px;
    min-height: 126px;
  }

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

  .page-home .cards-detail-grid {
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
  }

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

  .page-home .team-filter-list {
    grid-template-columns: repeat(2, 1fr);
  }

  .page-home .team-filter-item:nth-child(odd) {
    border-right: 1px solid var(--sf-mist);
  }

  .page-home .platform-nav-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 960px) {
  .page-home .hero-container {
    grid-template-columns: minmax(0, 1.55fr) minmax(0, 0.85fr);
  }

  .page-home .hero-panel-primary {
    border-left: 4px solid var(--sf-gold);
    border-top: 4px solid var(--sf-gold);
    border-bottom: 4px solid var(--sf-gold);
  }

  .page-home .hero-panel-accent {
    clip-path: polygon(12% 0, 100% 0, 100% 100%, 0 100%);
    padding-left: 44px;
  }

  .page-home .dashboard-layout {
    flex-direction: row;
    align-items: flex-start;
  }

  .page-home .stat-grid {
    flex: 1;
    min-width: 0;
  }

  .page-home .dash-media {
    width: 32%;
    flex: 0 0 auto;
  }

  .page-home .cards-section::after {
    width: 22px;
  }

  .page-home .platform-nav-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .page-home .platform-bottom {
    flex-direction: row;
    align-items: flex-end;
  }

  .page-home .platform-trust {
    flex: 1;
  }

  .page-home .coord-label {
    font-size: 12px;
  }
}
