.page-home {
  --home-section-space: clamp(56px, 9vw, 112px);
  --home-radius: 16px;
  background: var(--c-paper);
}

/* ===== Hero 数据仪表盘 ===== */
.page-home .home-hero {
  position: relative;
  overflow: hidden;
  padding-block: var(--home-section-space);
  background:
    radial-gradient(circle at 82% 12%, rgba(30, 111, 255, .16), transparent 34%),
    linear-gradient(var(--c-line) 1px, transparent 1px),
    linear-gradient(90deg, var(--c-line) 1px, transparent 1px),
    var(--c-bg);
  background-size: auto, 56px 56px, 56px 56px, auto;
  color: var(--c-ink);
}

.page-home .hero-watermark {
  position: absolute;
  right: -0.06em;
  bottom: -0.18em;
  font-family: var(--font-data);
  font-size: clamp(160px, 28vw, 420px);
  font-weight: 800;
  line-height: 1;
  color: rgba(255, 255, 255, .035);
  pointer-events: none;
  user-select: none;
}

.page-home .hero-plot {
  position: absolute;
  top: 7%;
  right: 4%;
  width: clamp(260px, 36vw, 520px);
  opacity: .6;
  pointer-events: none;
}

.page-home .hero-plot .plot-grid line {
  stroke: rgba(255, 255, 255, .10);
  stroke-width: 1;
  stroke-dasharray: 4 6;
}

.page-home .hero-plot .plot-line {
  fill: none;
  stroke: var(--c-blue);
  stroke-width: 2;
}

.page-home .hero-plot .plot-dot {
  fill: var(--c-orange);
  stroke: var(--c-bg);
  stroke-width: 3;
}

.page-home .hero-plot .plot-dot-highlight {
  fill: var(--c-gold);
}

.page-home .hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 40px;
  align-items: center;
}

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

.page-home .hero-kicker {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-data);
  font-size: .8125rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--c-muted);
}

.page-home .hero-kicker .index-marker {
  color: var(--c-orange);
}

.page-home .hero-title {
  margin: 18px 0 20px;
  font-family: var(--font-head);
  font-size: clamp(2.4rem, 7vw, 4.6rem);
  line-height: 1.02;
  letter-spacing: .01em;
  color: var(--c-ink);
}

.page-home .hero-bracket {
  color: var(--c-orange);
}

.page-home .hero-lead {
  margin: 0 0 28px;
  font-size: 1.0625rem;
  line-height: 1.8;
  color: var(--c-muted);
}

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

.page-home .home-hero .btn-outline {
  border-color: var(--c-line-strong);
  color: var(--c-ink);
}

.page-home .home-hero .btn-outline:hover {
  background: rgba(255, 255, 255, .06);
  border-color: var(--c-blue);
}

.page-home .hero-dashboard {
  position: relative;
  padding: 24px;
  background: rgba(13, 32, 56, .82);
  border: 1px solid var(--c-line-strong);
  border-radius: var(--home-radius);
  box-shadow: 0 24px 48px rgba(0, 0, 0, .28);
}

.page-home .dashboard-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  margin-bottom: 20px;
  border: 1px solid var(--c-line);
}

.page-home .dash-stat {
  position: relative;
  padding: 20px 18px;
  border: 1px solid var(--c-line);
  transition: background-color .25s var(--ease), border-color .25s var(--ease);
}

.page-home .dash-stat:hover {
  background: rgba(30, 111, 255, .08);
  border-color: var(--c-blue);
}

.page-home .dash-label {
  display: block;
  font-family: var(--font-data);
  font-size: .6875rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--c-muted);
  margin-bottom: 8px;
}

.page-home .dash-value {
  font-family: var(--font-head);
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  font-weight: 900;
  line-height: 1;
  color: var(--c-ink);
  transition: color .25s var(--ease);
}

.page-home .dash-stat:hover .dash-value {
  color: var(--c-orange);
}

.page-home .dash-unit {
  font-size: .5em;
  color: var(--c-muted);
  margin-left: 4px;
}

.page-home .dash-source {
  display: block;
  margin-top: 10px;
  font-size: .8125rem;
  line-height: 1.4;
  color: var(--c-muted);
  transition: color .25s var(--ease);
}

.page-home .dash-stat:hover .dash-source {
  color: var(--c-ink);
}

.page-home .hero-figure {
  position: relative;
  margin: 0 0 20px;
  overflow: hidden;
  aspect-ratio: 3 / 2;
  background: var(--c-bg-soft);
  border: 1px solid var(--c-line);
  border-radius: 12px;
}

.page-home .hero-figure img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s var(--ease);
}

.page-home .hero-figure:hover img {
  transform: scale(1.02);
}

.page-home .hero-figure .figure-caption {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  margin: 0;
  padding: 28px 14px 12px;
  font-size: .8125rem;
  color: var(--c-ink);
  background: linear-gradient(transparent, rgba(10, 26, 47, .92));
}

.page-home .dashboard-foot {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 14px;
  font-family: var(--font-data);
  font-size: .8125rem;
  color: var(--c-muted);
}

.page-home .dashboard-foot .trend-up {
  color: var(--c-green);
}

/* ===== 快速检索 ===== */
.page-home .home-search {
  padding-block: var(--home-section-space);
  background: var(--c-paper);
  color: var(--text-strong);
}

.page-home .search-inner {
  display: grid;
  gap: 28px;
  align-items: center;
}

.page-home .search-visual {
  position: relative;
}

.page-home .home-search-figure {
  position: relative;
  margin: 0;
  overflow: hidden;
  aspect-ratio: 3 / 2;
  border-radius: var(--home-radius);
  background: var(--c-bg);
  border: 1px solid var(--section-border);
}

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

.page-home .home-search-figure .figure-caption {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  margin: 0;
  padding: 28px 16px 12px;
  font-size: .8125rem;
  color: var(--c-ink);
  background: linear-gradient(transparent, rgba(10, 26, 47, .88));
}

.page-home .search-panel {
  position: relative;
  padding: 28px;
  background: var(--card-bg);
  border: 1px solid var(--card-rule);
  border-radius: var(--home-radius);
  box-shadow: 0 12px 32px rgba(10, 26, 47, .06);
}

.page-home .search-panel .section-label {
  color: var(--c-orange);
}

.page-home .search-desc {
  margin: 8px 0 0;
  font-size: .9375rem;
  line-height: 1.7;
  color: var(--text-muted);
}

.page-home .search-box {
  margin: 20px 0 12px;
}

.page-home .search-label {
  display: block;
  margin-bottom: 8px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: .875rem;
  color: var(--text-strong);
}

.page-home .search-input {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--table-border);
  background: var(--c-paper);
  color: var(--text-strong);
  font-family: var(--font-data);
  font-size: .9375rem;
  border-radius: 10px;
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
}

.page-home .search-input:focus {
  outline: none;
  border-color: var(--c-blue);
  box-shadow: 0 0 0 4px rgba(30, 111, 255, .12);
}

.page-home .search-hint {
  margin: 10px 0 0;
  font-size: .8125rem;
  color: var(--text-muted);
}

.page-home .search-tips {
  margin: 16px 0 20px;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  font-size: .875rem;
  color: var(--text-muted);
}

.page-home .search-tips li::before {
  content: "/ ";
  font-family: var(--font-data);
  color: var(--c-orange);
}

/* ===== 本周赛事日历 ===== */
.page-home .home-calendar {
  padding-block: var(--home-section-space);
  background: var(--card-bg);
  color: var(--text-strong);
  border-block: 1px solid var(--section-border);
}

.page-home .calendar-grid {
  display: grid;
  gap: 28px;
}

.page-home .calendar-col {
  padding: 24px;
  background: var(--c-paper);
  border: 1px solid var(--section-border);
  border-radius: var(--home-radius);
}

.page-home .calendar-col-title {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  font-family: var(--font-head);
  font-size: 1rem;
  color: var(--text-strong);
}

.page-home .calendar-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.page-home .cal-item {
  display: grid;
  grid-template-columns: 68px 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid var(--section-border);
  transition: background-color .2s var(--ease);
}

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

.page-home .cal-item:hover {
  background: rgba(30, 111, 255, .04);
}

.page-home .cal-day {
  font-family: var(--font-data);
  font-size: .8125rem;
  color: var(--text-muted);
}

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

.page-home .cal-info strong {
  font-family: var(--font-head);
  font-size: .9375rem;
  color: var(--text-strong);
}

.page-home .cal-info span {
  font-size: .875rem;
  color: var(--text-muted);
}

.page-home .cal-meta {
  font-family: var(--font-data);
  font-size: .75rem;
  white-space: nowrap;
  color: var(--c-orange);
}

.page-home .calendar-more {
  display: inline-flex;
  margin-top: 28px;
}

/* ===== 功能亮点 ===== */
.page-home .home-features {
  position: relative;
  padding-block: var(--home-section-space);
  background:
    linear-gradient(135deg, rgba(30, 111, 255, .10), transparent 40%),
    var(--c-bg);
  color: var(--c-ink);
}

.page-home .home-features .section-label,
.page-home .home-features .section-title {
  color: var(--c-ink);
}

.page-home .home-features .section-sub {
  color: var(--c-muted);
}

.page-home .feature-grid {
  display: grid;
  gap: 24px;
}

.page-home .feature-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 28px;
  overflow: hidden;
  border-radius: var(--home-radius);
  border: 1px solid var(--c-line-strong);
  background: rgba(255, 255, 255, .04);
  transition: border-color .3s var(--ease), box-shadow .3s var(--ease), transform .3s var(--ease);
}

.page-home .feature-card:hover {
  border-color: rgba(30, 111, 255, .7);
  box-shadow: 0 18px 44px rgba(0, 0, 0, .32), 0 0 0 1px rgba(30, 111, 255, .35);
  transform: translateY(-4px);
}

.page-home .feature-num {
  font-family: var(--font-data);
  font-size: .75rem;
  letter-spacing: .1em;
  color: var(--c-orange);
  margin-bottom: 18px;
}

.page-home .feature-title {
  margin: 0 0 12px;
  font-family: var(--font-head);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--c-ink);
}

.page-home .feature-card .feature-desc {
  margin: 0 0 22px;
  font-size: .9375rem;
  line-height: 1.7;
  color: var(--c-muted);
}

.page-home .feature-more {
  margin-top: auto;
  font-family: var(--font-head);
  font-size: .875rem;
  font-weight: 700;
  color: var(--c-blue);
  text-decoration: none;
  transition: color .2s var(--ease);
}

.page-home .feature-more:hover {
  color: var(--c-orange);
}

.page-home .figure-phone {
  margin: 16px auto 0;
  width: 140px;
  aspect-ratio: 1 / 2;
}

.page-home .figure-phone img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 18px;
  border: 1px solid var(--c-line-strong);
}

/* ===== 最新动态 ===== */
.page-home .home-news {
  padding-block: var(--home-section-space);
  background: var(--c-paper);
  color: var(--text-strong);
}

.page-home .news-list {
  border-top: 1px solid var(--section-border);
}

.page-home .news-item {
  display: grid;
  gap: 14px;
  padding: 24px 0;
  border-bottom: 1px solid var(--section-border);
  transition: padding .25s var(--ease);
}

.page-home .news-item:hover {
  padding-left: 12px;
}

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

.page-home .news-round {
  font-family: var(--font-data);
  font-size: .8125rem;
  color: var(--text-muted);
}

.page-home .news-content h3 {
  margin: 0 0 6px;
  font-family: var(--font-head);
  font-size: 1.0625rem;
  font-weight: 800;
  color: var(--text-strong);
}

.page-home .news-content p {
  margin: 0;
  font-size: .9375rem;
  line-height: 1.6;
  color: var(--text-muted);
}

.page-home .news-more {
  font-family: var(--font-head);
  font-size: .875rem;
  font-weight: 700;
  color: var(--c-blue);
  text-decoration: none;
  white-space: nowrap;
  transition: color .2s var(--ease);
}

.page-home .news-more:hover {
  color: var(--c-orange);
}

/* ===== 信任与认证 ===== */
.page-home .home-trust {
  position: relative;
  padding-block: var(--home-section-space);
  background: var(--c-bg);
  color: var(--c-ink);
  overflow: hidden;
}

.page-home .trust-texture-wrap {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 56px;
  overflow: hidden;
}

.page-home .trust-texture {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .35;
}

.page-home .trust-inner {
  position: relative;
  display: grid;
  gap: 36px;
}

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

.page-home .metric-item {
  padding: 20px 16px;
  background: rgba(255, 255, 255, .05);
  border: 1px solid var(--c-line-strong);
  border-radius: 12px;
  transition: border-color .2s var(--ease);
}

.page-home .metric-item:hover {
  border-color: var(--c-gold);
}

.page-home .metric-item strong {
  display: block;
  font-family: var(--font-head);
  font-size: 1.8rem;
  line-height: 1.1;
  color: var(--c-gold);
}

.page-home .metric-item span {
  display: block;
  margin-top: 6px;
  font-size: .8125rem;
  color: var(--c-muted);
}

.page-home .trust-copy p {
  margin: 0 0 20px;
  font-size: 1.0625rem;
  line-height: 1.8;
  color: var(--c-muted);
}

/* ===== 平板 ===== */
@media (min-width: 768px) {
  .page-home .dashboard-stats {
    grid-template-columns: repeat(4, 1fr);
  }

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

  .page-home .feature-app {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1fr 170px;
    column-gap: 28px;
    align-items: center;
  }

  .page-home .feature-app .figure-phone {
    grid-column: 2;
    grid-row: 1 / span 4;
    width: 150px;
  }

  .page-home .news-item {
    grid-template-columns: 180px 1fr auto;
    align-items: center;
    gap: 24px;
  }

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

/* ===== 桌面端 ===== */
@media (min-width: 1024px) {
  .page-home .hero-inner {
    grid-template-columns: minmax(0, .85fr) minmax(0, 1.15fr);
    gap: 56px;
  }

  .page-home .search-inner {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr);
    gap: 48px;
  }

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

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

  .page-home .feature-app {
    grid-column: auto;
    display: flex;
  }

  .page-home .feature-app .figure-phone {
    grid-column: auto;
    grid-row: auto;
    width: 140px;
  }

  .page-home .trust-inner {
    grid-template-columns: 1.1fr .9fr;
    gap: 56px;
    align-items: center;
  }
}
