.page-home {
  --home-hero-grad: linear-gradient(135deg, #0A3B2C 0%, #0E4D3A 52%, #1A7A5A 100%);
  --home-card-bg: rgba(255, 255, 255, 0.97);
  --home-gold-line: rgba(212, 169, 44, 0.55);
  background: var(--color-bg);
  overflow-x: hidden;
}

.page-home a {
  text-decoration: none;
}

/* ========== 快捷入口 ========== */
.page-home .home-quickbar {
  background: var(--color-primary-deep);
  border-top: 2px solid var(--color-gold);
}

.page-home .home-quickbar-inner {
  display: flex;
  gap: 0.5rem;
  overflow-x: auto;
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
  scrollbar-width: none;
}

.page-home .home-quickbar-inner::-webkit-scrollbar {
  display: none;
}

.page-home .quickbar-item {
  flex: 0 0 auto;
  min-width: 9.5rem;
  padding: 0.75rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.05);
  color: var(--color-white);
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  transition: border-color 0.3s ease, background-color 0.3s ease;
}

.page-home .quickbar-item:hover,
.page-home .quickbar-item:focus-visible {
  border-color: var(--color-gold);
  background: rgba(212, 169, 44, 0.12);
}

.page-home .quickbar-index {
  font-family: var(--font-data);
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  color: var(--color-gold);
}

.page-home .quickbar-label {
  font-weight: 700;
  font-size: 1.05rem;
}

.page-home .quickbar-note {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.68);
}

/* ========== 首屏 ========== */
.page-home .home-hero {
  position: relative;
  background: var(--home-hero-grad);
  color: var(--color-white);
  padding: 2.75rem 0 3rem;
  overflow: hidden;
}

.page-home .hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.page-home .hero-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.16;
}

.page-home .hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(10, 59, 44, 0.82) 0%, rgba(14, 77, 58, 0.55) 55%, rgba(26, 122, 90, 0.35) 100%);
}

.page-home .hero-clip {
  position: absolute;
  opacity: 0;
  z-index: 1;
  pointer-events: none;
}

.page-home .hero-layout {
  position: relative;
  z-index: 2;
}

.page-home .hero-copy {
  max-width: 720px;
}

.page-home .hero-kicker-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 1rem;
}

.page-home .live-dot {
  width: 0.6rem;
  height: 0.6rem;
  border-radius: 50%;
  background: var(--color-orange);
  box-shadow: 0 0 0 0 rgba(232, 122, 32, 0.55);
  animation: page-home-live-pulse 1.8s ease-out infinite;
}

@keyframes page-home-live-pulse {
  0% { box-shadow: 0 0 0 0 rgba(232, 122, 32, 0.55); }
  70% { box-shadow: 0 0 0 0.7rem rgba(232, 122, 32, 0); }
  100% { box-shadow: 0 0 0 0 rgba(232, 122, 32, 0); }
}

.page-home h1 {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 6vw, 4.25rem);
  line-height: 1.06;
  margin: 0 0 1.1rem;
  letter-spacing: -0.01em;
}

.page-home .hero-desc {
  font-size: 1.02rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.88);
  margin: 0 0 1.4rem;
  max-width: 660px;
}

.page-home .hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.page-home .btn-ghost-light {
  background: transparent;
  color: var(--color-white);
  border: 1px solid rgba(255, 255, 255, 0.6);
}

.page-home .btn-ghost-light:hover,
.page-home .btn-ghost-light:focus-visible {
  border-color: var(--color-gold);
  color: var(--color-gold);
}

/* ========== 首屏数据卡 ========== */
.page-home .hero-dash {
  display: grid;
  gap: 1.25rem;
  margin-top: 1rem;
}

.page-home .hero-card {
  background: var(--home-card-bg);
  color: var(--color-text);
  border: 1px solid var(--home-gold-line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out);
}

.page-home .hero-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(14, 77, 58, 0.22);
}

.page-home .hero-card-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.page-home .hero-card-head h2 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  line-height: 1.25;
  margin: 0;
}

.page-home .league-switch {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.page-home .league-active {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.8rem;
  background: var(--color-primary);
  color: var(--color-white);
  border-radius: 99px;
  font-size: 0.8rem;
  font-weight: 700;
}

.page-home .league-link {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.8rem;
  border: 1px solid rgba(14, 77, 58, 0.28);
  color: var(--color-primary);
  border-radius: 99px;
  font-size: 0.8rem;
  font-weight: 600;
  transition: border-color 0.3s ease, color 0.3s ease;
}

.page-home .league-link:hover,
.page-home .league-link:focus-visible {
  border-color: var(--color-gold);
  color: var(--color-orange);
}

.page-home .league-note {
  font-size: 0.75rem;
  color: rgba(26, 26, 26, 0.55);
}

.page-home .round-switch {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
}

.page-home .round-arrow {
  font-size: 1.2rem;
  line-height: 1;
  color: rgba(26, 26, 26, 0.45);
}

.page-home .round-label {
  font-weight: 700;
  color: var(--color-text);
}

.page-home .round-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--color-orange);
  background: rgba(232, 122, 32, 0.1);
  padding: 0.2rem 0.55rem;
  border-radius: 99px;
}

/* ========== 积分榜表格 ========== */
.page-home .table-scroll {
  overflow-x: auto;
  border: 1px solid rgba(14, 77, 58, 0.1);
  border-radius: var(--radius-sm);
}

.page-home .standings-table {
  width: 100%;
  min-width: 580px;
  border-collapse: collapse;
  font-size: 0.82rem;
}

.page-home .standings-table th {
  background: rgba(14, 77, 58, 0.06);
  color: rgba(26, 26, 26, 0.68);
  text-align: left;
  font-weight: 700;
  padding: 0.6rem 0.7rem;
  white-space: nowrap;
  border-bottom: 1px solid rgba(14, 77, 58, 0.14);
}

.page-home .standings-table td {
  padding: 0.62rem 0.7rem;
  border-bottom: 1px solid rgba(14, 77, 58, 0.06);
  white-space: nowrap;
}

.page-home .standings-table tbody tr:last-child td {
  border-bottom: none;
}

.page-home .standings-table tbody tr {
  transition: background-color 0.25s ease;
}

.page-home .standings-table tbody tr:hover {
  background: rgba(212, 169, 44, 0.07);
}

.page-home .rank-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.6rem;
  height: 1.6rem;
  border-radius: 50%;
  background: rgba(14, 77, 58, 0.08);
  font-weight: 700;
  font-size: 0.78rem;
}

.page-home .rank-top {
  background: var(--color-gold);
  color: var(--color-text);
}

.page-home .team-cell {
  font-weight: 700;
}

.page-home .points-cell {
  font-family: var(--font-data);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--color-primary);
}

/* ========== 射手榜 ========== */
.page-home .scorer-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.page-home .scorer-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.55rem 0.65rem;
  border: 1px solid rgba(14, 77, 58, 0.08);
  border-radius: var(--radius-md);
  background: rgba(244, 246, 244, 0.75);
  transition: border-color 0.3s ease, transform 0.3s var(--ease-out);
}

.page-home .scorer-item:hover {
  border-color: var(--home-gold-line);
  transform: translateX(4px);
}

.page-home .scorer-rank {
  font-family: var(--font-data);
  font-weight: 700;
  font-size: 1rem;
  width: 1.5rem;
  text-align: center;
  color: var(--color-gold);
}

.page-home .scorer-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.page-home .scorer-name {
  font-size: 0.92rem;
  line-height: 1.3;
}

.page-home .scorer-team {
  font-size: 0.75rem;
  color: rgba(26, 26, 26, 0.56);
}

.page-home .scorer-stats {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.page-home .scorer-goals {
  font-size: 0.8rem;
  white-space: nowrap;
}

.page-home .goal-num {
  font-family: var(--font-data);
  font-weight: 700;
  font-size: 1.6rem;
  color: var(--color-primary);
  margin-right: 0.1rem;
}

.page-home .form-dots {
  display: inline-flex;
  gap: 2px;
}

.page-home .dot {
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  display: inline-block;
  background: rgba(26, 26, 26, 0.14);
}

.page-home .dot.on {
  background: var(--color-secondary);
}

.page-home .dot.off {
  background: rgba(26, 26, 26, 0.14);
}

/* ========== 卡片脚注 ========== */
.page-home .card-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.78rem;
  color: rgba(26, 26, 26, 0.62);
  border-top: 1px solid rgba(14, 77, 58, 0.08);
  padding-top: 0.85rem;
}

.page-home .foot-link {
  font-weight: 700;
  color: var(--color-primary);
}

.page-home .foot-link:hover {
  color: var(--color-orange);
}

/* ========== 第二屏：战报与国内快讯 ========== */
.page-home .home-news {
  background: var(--color-bg);
  padding: 3.5rem 0;
}

.page-home .news-grid {
  display: grid;
  gap: 1.5rem;
}

.page-home .reports-panel,
.page-home .quick-news-panel {
  background: var(--color-white);
  border: 1px solid rgba(14, 77, 58, 0.12);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.page-home .section-kicker {
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-primary);
  margin: 0 0 0.3rem;
}

.page-home .section-kicker-light {
  color: var(--color-gold);
}

.page-home .section-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.page-home .section-head h2 {
  font-family: var(--font-display);
  font-size: 1.65rem;
  line-height: 1.15;
  margin: 0;
}

.page-home .section-lead {
  margin: 0;
  font-size: 0.95rem;
  color: rgba(26, 26, 26, 0.7);
}

/* ========== 战报时间线 ========== */
.page-home .report-timeline {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.page-home .report-item {
  border: 1px solid rgba(14, 77, 58, 0.12);
  border-radius: var(--radius-md);
  background: var(--color-bg);
  overflow: hidden;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.page-home .report-item:hover {
  border-color: var(--home-gold-line);
  box-shadow: var(--shadow-sm);
}

.page-home .report-item[open] {
  border-color: var(--home-gold-line);
}

.page-home .report-summary {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.95rem 1rem;
  cursor: pointer;
}

.page-home .report-summary::-webkit-details-marker {
  display: none;
}

.page-home .report-time {
  font-family: var(--font-data);
  font-weight: 700;
  font-size: 1rem;
  color: var(--color-gold);
  white-space: nowrap;
}

.page-home .report-title {
  flex: 1;
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.4;
}

.page-home .report-arrow {
  position: relative;
  width: 1.1rem;
  height: 1.1rem;
  flex: 0 0 auto;
}

.page-home .report-arrow::before,
.page-home .report-arrow::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  background: var(--color-primary);
  border-radius: 2px;
  transform: translate(-50%, -50%);
}

.page-home .report-arrow::before {
  width: 0.9rem;
  height: 2px;
}

.page-home .report-arrow::after {
  width: 2px;
  height: 0.9rem;
}

.page-home .report-item[open] .report-arrow::after {
  display: none;
}

.page-home .report-body {
  padding: 0.2rem 1rem 1rem;
  border-top: 1px dashed rgba(14, 77, 58, 0.15);
}

.page-home .report-excerpt {
  margin: 0.7rem 0 0.6rem;
  font-size: 0.92rem;
  line-height: 1.6;
  color: rgba(26, 26, 26, 0.78);
}

.page-home .report-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.4rem 1rem;
  font-size: 0.78rem;
  color: rgba(26, 26, 26, 0.58);
}

.page-home .report-competition {
  font-weight: 700;
}

.page-home .report-updated {
  color: var(--color-orange);
  font-weight: 700;
}

.page-home .report-link {
  margin-left: auto;
  font-weight: 700;
  color: var(--color-primary);
}

.page-home .report-link:hover {
  color: var(--color-orange);
}

.page-home .report-img,
.page-home .news-img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: var(--radius-md);
  border: 1px solid rgba(14, 77, 58, 0.1);
}

/* ========== 国内快讯列表 ========== */
.page-home .news-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.page-home .news-item {
  padding: 0.95rem 1rem;
  border: 1px solid rgba(14, 77, 58, 0.1);
  border-left: 3px solid var(--color-gold);
  border-radius: var(--radius-sm);
  background: var(--color-bg);
  transition: transform 0.3s var(--ease-out), border-color 0.3s ease, box-shadow 0.3s ease;
}

.page-home .news-item:hover {
  transform: translateY(-2px);
  border-color: var(--home-gold-line);
  box-shadow: var(--shadow-sm);
}

.page-home .news-cat {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--color-primary);
  background: rgba(14, 77, 58, 0.07);
  padding: 0.18rem 0.55rem;
  border-radius: 99px;
  margin-bottom: 0.35rem;
}

.page-home .news-headline {
  margin: 0 0 0.3rem;
  font-size: 0.98rem;
  line-height: 1.5;
}

.page-home .news-headline a {
  color: var(--color-text);
  font-weight: 700;
}

.page-home .news-headline a:hover,
.page-home .news-headline a:focus-visible {
  color: var(--color-primary);
}

.page-home .news-snippet {
  margin: 0 0 0.4rem;
  font-size: 0.84rem;
  line-height: 1.55;
  color: rgba(26, 26, 26, 0.66);
}

.page-home .news-time {
  font-size: 0.75rem;
  color: var(--color-orange);
  font-weight: 700;
}

/* ========== 交锋记录 ========== */
.page-home .home-h2h {
  background: linear-gradient(135deg, #0A3B2C 0%, #0E4D3A 70%, #1A7A5A 100%);
  color: var(--color-white);
  padding: 3.5rem 0;
  position: relative;
  overflow: hidden;
}

.page-home .home-h2h::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 40%;
  height: 100%;
  background: linear-gradient(135deg, rgba(212, 169, 44, 0.18), rgba(232, 122, 32, 0.05));
  clip-path: polygon(18% 0, 100% 0, 100% 100%, 0 100%);
  pointer-events: none;
}

.page-home .h2h-head {
  position: relative;
  z-index: 1;
  max-width: 720px;
}

.page-home .h2h-head h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.6vw, 2.8rem);
  line-height: 1.15;
  margin: 0 0 0.6rem;
}

.page-home .h2h-desc {
  font-size: 0.98rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.82);
  margin: 0;
}

.page-home .h2h-demo {
  position: relative;
  z-index: 1;
  margin-top: 1.8rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius-lg);
  padding: 1.25rem;
  backdrop-filter: blur(2px);
}

.page-home .h2h-vs {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1.25rem;
}

.page-home .h2h-team {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.15rem;
  padding: 0.75rem 1.2rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.05);
  min-width: 8.5rem;
}

.page-home .h2h-team-name {
  font-weight: 700;
  font-size: 1.05rem;
}

.page-home .h2h-team-record {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.65);
}

.page-home .h2h-vs-text {
  font-family: var(--font-data);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--color-gold);
}

.page-home .h2h-table-wrap {
  overflow-x: auto;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.96);
  color: var(--color-text);
}

.page-home .h2h-table {
  width: 100%;
  min-width: 560px;
  border-collapse: collapse;
  font-size: 0.85rem;
}

.page-home .h2h-table th {
  text-align: left;
  padding: 0.6rem 0.8rem;
  background: rgba(14, 77, 58, 0.07);
  font-weight: 700;
  border-bottom: 1px solid rgba(14, 77, 58, 0.12);
}

.page-home .h2h-table td {
  padding: 0.62rem 0.8rem;
  border-bottom: 1px solid rgba(14, 77, 58, 0.06);
}

.page-home .h2h-table tbody tr:last-child td {
  border-bottom: none;
}

.page-home .h2h-score {
  font-family: var(--font-data);
  font-weight: 700;
  color: var(--color-primary);
}

.page-home .h2h-cta {
  margin: 1.2rem 0 1rem;
  font-size: 0.92rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
}

.page-home .btn-outline-light {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.65);
  color: var(--color-white);
}

.page-home .btn-outline-light:hover,
.page-home .btn-outline-light:focus-visible {
  border-color: var(--color-gold);
  color: var(--color-gold);
}

/* ========== APP 推广 ========== */
.page-home .home-app {
  background: var(--color-white);
  padding: 3.5rem 0;
}

.page-home .app-layout {
  display: grid;
  gap: 2rem;
}

.page-home .app-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
}

.page-home .app-head h2 {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3.4vw, 2.6rem);
  line-height: 1.15;
  margin: 0;
}

.page-home .app-desc {
  font-size: 0.98rem;
  line-height: 1.72;
  color: rgba(26, 26, 26, 0.75);
  margin: 0;
}

.page-home .app-feature-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.page-home .app-feature-list li {
  position: relative;
  padding-left: 1.4rem;
  font-size: 0.94rem;
  line-height: 1.55;
}

.page-home .app-feature-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.42rem;
  width: 0.7rem;
  height: 0.7rem;
  background: var(--color-gold);
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  transform: rotate(45deg);
}

.page-home .app-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 0.4rem;
}

.page-home .app-rating {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--color-primary);
  background: rgba(14, 77, 58, 0.06);
  padding: 0.35rem 0.8rem;
  border-radius: 99px;
}

.page-home .app-visual img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(14, 77, 58, 0.12);
  box-shadow: var(--shadow-md);
}

/* ========== 平台数据 ========== */
.page-home .home-stats {
  background: linear-gradient(160deg, #0A3B2C 0%, #0E4D3A 65%, #1A7A5A 100%);
  color: var(--color-white);
  padding: 3.5rem 0;
}

.page-home .stats-head {
  max-width: 720px;
  margin-bottom: 2rem;
}

.page-home .stats-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.6vw, 2.8rem);
  margin: 0 0 0.6rem;
}

.page-home .stats-desc {
  font-size: 0.98rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
}

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

.page-home .stat-item {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-md);
  padding: 1.25rem 1rem;
  text-align: center;
  transition: border-color 0.3s ease, transform 0.3s var(--ease-out);
}

.page-home .stat-item:hover {
  border-color: var(--color-gold);
  transform: translateY(-3px);
}

.page-home .stat-item .data-number {
  display: block;
  font-family: var(--font-data);
  font-weight: 700;
  font-size: clamp(1.9rem, 4vw, 3rem);
  line-height: 1;
  color: var(--color-gold);
  margin-bottom: 0.35rem;
}

.page-home .stat-label {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.72);
}

.page-home .stats-trust {
  margin: 2rem 0 0;
  font-size: 0.92rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.82);
  max-width: 860px;
}

.page-home .stats-trust .link-inline {
  color: var(--color-gold);
  font-weight: 700;
}

/* ========== 中屏：640px ========== */
@media (min-width: 640px) {
  .page-home .home-quickbar-inner {
    gap: 0.9rem;
  }

  .page-home .quickbar-item {
    min-width: auto;
    flex: 1;
  }

  .page-home .hero-card {
    padding: 1.5rem;
  }

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

  .page-home .report-img,
  .page-home .news-img {
    max-height: 280px;
  }
}

/* ========== 桌面：1024px ========== */
@media (min-width: 1024px) {
  .page-home .home-hero {
    padding: 4rem 0 4.5rem;
  }

  .page-home .hero-clip {
    opacity: 1;
    top: 0;
    right: 0;
    width: 58%;
    height: 120%;
    background: linear-gradient(135deg, rgba(212, 169, 44, 0.2), rgba(232, 122, 32, 0.06));
    clip-path: polygon(14% 0, 100% 0, 100% 100%, 0 100%);
    transform: skewX(-7deg);
    transform-origin: top right;
  }

  .page-home .hero-layout {
    display: flex;
    flex-direction: column;
    gap: 2.2rem;
  }

  .page-home .hero-copy {
    padding-right: 5%;
  }

  .page-home .hero-dash {
    grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
    align-items: start;
  }

  .page-home .hero-card {
    background: var(--home-card-bg);
  }

  .page-home .home-news {
    padding: 5rem 0;
  }

  .page-home .news-grid {
    grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
    align-items: start;
    gap: 2rem;
  }

  .page-home .reports-panel,
  .page-home .quick-news-panel {
    padding: 2rem;
  }

  .page-home .home-h2h {
    padding: 5rem 0;
  }

  .page-home .h2h-demo {
    padding: 2rem;
  }

  .page-home .home-app {
    padding: 5rem 0;
  }

  .page-home .app-layout {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    align-items: center;
    gap: 3rem;
  }

  .page-home .app-visual {
    order: 1;
  }

  .page-home .app-copy {
    order: 2;
  }

  .page-home .home-stats {
    padding: 5rem 0;
  }

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

  .page-home .stat-item {
    padding: 1.5rem 1rem;
  }
}
