.page-home {
  --home-red: #E63946;
  --home-yellow: #F4D03F;
  --home-gold: #D4AF37;
  --home-black: #0A0B0D;
  --home-carbon: #1C1E20;
  --home-ivory: #F5F2EB;
  --home-gray: #8A8D8F;
  --home-gold-light: #F5E6A8;
  --home-max: 1280px;
  --home-pad: 24px;
  display: block;
  background: var(--home-black);
  color: var(--home-ivory);
  font-family: var(--font-body);
  overflow-x: clip;
}

/* 框景首屏 */
.page-home__hero-frame {
  position: relative;
  min-height: min(92vh, 920px);
  padding: calc(var(--header-h, 74px) + 40px) var(--home-pad) 56px;
  display: flex;
  align-items: center;
  isolation: isolate;
}
.page-home__hero-frame::before {
  content: "";
  position: absolute;
  inset: 76px 14px 46px;
  border: 1px solid rgba(212, 175, 55, 0.6);
  z-index: 1;
  pointer-events: none;
}
.page-home__hero-frame::after {
  content: "";
  position: absolute;
  inset: 84px 22px 54px;
  border: 1px solid rgba(138, 141, 143, 0.35);
  z-index: 1;
  pointer-events: none;
}
.page-home__hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  overflow: hidden;
}
.page-home__hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.4) saturate(1.1);
}
.page-home__hero-scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(10, 11, 13, 0.94) 0%, rgba(10, 11, 13, 0.72) 46%, rgba(10, 11, 13, 0.35) 78%, rgba(10, 11, 13, 0.72) 100%),
    linear-gradient(0deg, #0A0B0D 0%, transparent 22%);
}
.page-home__hero-inner {
  width: min(var(--home-max), 100%);
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.page-home__hero-grid {
  display: grid;
  gap: 40px;
  align-items: center;
}
.page-home__hero-copy {
  max-width: 760px;
}
.page-home__hero-title {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: clamp(1.7rem, 4.6vw, 3.2rem);
  line-height: 1.16;
  letter-spacing: 0.01em;
  color: var(--home-ivory);
  text-transform: uppercase;
  margin: 14px 0 20px;
  text-shadow: 0 0 32px rgba(212, 175, 55, 0.22);
  border-left: 4px solid var(--home-gold);
  padding-left: 20px;
}
.page-home__hero-lead {
  font-size: 0.88rem;
  line-height: 1.85;
  color: rgba(245, 242, 235, 0.82);
  max-width: 640px;
  margin-bottom: 28px;
}
.page-home__hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
.page-home__hero-meter {
  background: linear-gradient(148deg, rgba(28, 30, 32, 0.92), rgba(10, 11, 13, 0.88));
  border: 1px solid rgba(212, 175, 55, 0.45);
  padding: 26px 20px 22px;
  position: relative;
  display: grid;
  justify-items: center;
  max-width: 400px;
  width: 100%;
}
.page-home__hero-meter::after {
  content: "LIVE";
  position: absolute;
  top: -10px;
  right: 14px;
  background: var(--home-red);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  padding: 3px 10px;
}
.page-home__hero-meter::before {
  content: "";
  position: absolute;
  inset: 6px;
  border: 1px dashed rgba(138, 141, 143, 0.45);
  pointer-events: none;
}
.page-home__meter-ring {
  position: relative;
  width: 150px;
  height: 150px;
  display: grid;
  place-items: center;
}
.page-home__meter-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}
.page-home__meter-core {
  display: grid;
  justify-items: center;
  gap: 2px;
}
.page-home__meter-label {
  font-size: 0.7rem;
  color: var(--home-gray);
  letter-spacing: 0.12em;
}
.page-home__meter-value {
  font-family: var(--font-num);
  font-size: 3rem;
  font-weight: 700;
  line-height: 1;
  color: var(--home-gold);
}
.page-home__meter-unit {
  font-size: 0.65rem;
  color: rgba(245, 242, 235, 0.6);
}
.page-home__meter-legend {
  display: flex;
  gap: 18px;
  margin-top: 16px;
}
.page-home__legend-item {
  font-size: 0.78rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.page-home__legend-item::before {
  content: "";
  width: 10px;
  height: 10px;
  display: inline-block;
}
.page-home__legend-item--yellow::before {
  background: var(--home-yellow);
}
.page-home__legend-item--red::before {
  background: var(--home-red);
}
.page-home__meter-note {
  margin-top: 12px;
  font-size: 0.68rem;
  color: var(--home-gray);
  text-align: center;
}
.page-home__hero-ruler {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 22px;
  height: 14px;
  display: flex;
  gap: 0;
  z-index: 2;
  pointer-events: none;
}
.page-home__hero-ruler span {
  flex: 1;
  border-right: 1px solid rgba(212, 175, 55, 0.5);
  border-bottom: 1px solid rgba(212, 175, 55, 0.18);
}
.page-home__hero-ruler span:nth-child(3n) {
  border-bottom-color: rgba(212, 175, 55, 0.5);
}

/* 三栏检索 */
.page-home__quick-entry {
  background: var(--home-carbon);
  padding: 72px 0 80px;
  position: relative;
}
.page-home__quick-entry::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--home-gold) 0%, var(--home-red) 50%, var(--home-yellow) 100%);
}
.page-home__section-head {
  margin-bottom: 44px;
  max-width: 760px;
}
.page-home__entry-grid {
  display: grid;
  gap: 22px;
}
.page-home__entry-card {
  position: relative;
  display: block;
  background: #141619;
  padding: 34px 28px 40px;
  border: 1px solid rgba(138, 141, 143, 0.22);
  text-decoration: none;
  color: var(--home-ivory);
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.4s, border-color 0.4s;
  clip-path: polygon(0 0, calc(100% - 28px) 0, 100% 28px, 100% 100%, 0 100%);
}
.page-home__entry-card::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 28px;
  height: 28px;
  background: var(--home-carbon);
  border-left: 1px solid rgba(138, 141, 143, 0.2);
  border-bottom: 1px solid rgba(138, 141, 143, 0.2);
}
.page-home__entry-card--cut-gold:hover {
  border-color: var(--home-gold);
  box-shadow: 0 14px 40px rgba(212, 175, 55, 0.16);
  transform: translateY(-6px);
}
.page-home__entry-card--cut-red:hover {
  border-color: var(--home-red);
  box-shadow: 0 14px 40px rgba(230, 57, 70, 0.14);
  transform: translateY(-6px);
}
.page-home__entry-card--cut-yellow:hover {
  border-color: var(--home-yellow);
  box-shadow: 0 14px 40px rgba(244, 208, 63, 0.14);
  transform: translateY(-6px);
}
.page-home__entry-no {
  font-family: var(--font-num);
  font-size: 0.85rem;
  color: var(--home-gray);
  letter-spacing: 0.18em;
}
.page-home__entry-icon {
  display: inline-block;
  margin: 18px 0 14px;
}
.page-home__entry-title {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.22rem;
  line-height: 1.4;
  margin: 0 0 12px;
  color: var(--home-ivory);
}
.page-home__entry-desc {
  font-size: 0.78rem;
  line-height: 1.8;
  color: rgba(245, 242, 235, 0.66);
  margin-bottom: 18px;
}
.page-home__entry-link {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}
.page-home__entry-card--cut-gold .page-home__entry-link {
  color: var(--home-gold);
}
.page-home__entry-card--cut-red .page-home__entry-link {
  color: var(--home-red);
}
.page-home__entry-card--cut-yellow .page-home__entry-link {
  color: var(--home-yellow);
}

/* 红黄牌面板 */
.page-home__panel {
  padding: 80px 0;
  position: relative;
}
.page-home__panel--dark {
  background: var(--home-black);
}
.page-home__panel-layout {
  display: grid;
  gap: 48px;
}
.page-home__panel-copy {
  order: 2;
}
.page-home__panel-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin: 10px 0 30px;
  padding: 0;
}
.page-home__stat-block {
  background: rgba(28, 30, 32, 0.7);
  border-left: 3px solid var(--home-gold);
  padding: 18px 16px;
}
.page-home__stat-block .stat-number {
  font-family: var(--font-num);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--home-ivory);
  line-height: 1.2;
  display: block;
}
.page-home__stat-block .stat-number--yellow {
  color: var(--home-yellow);
}
.page-home__panel-visual {
  order: 1;
  position: relative;
}
.page-home__panel-chart {
  position: relative;
  border: 1px solid rgba(212, 175, 55, 0.4);
  padding: 10px;
  background: var(--home-carbon);
}
.page-home__panel-chart::after {
  content: "ROUND 28";
  position: absolute;
  top: 18px;
  right: 18px;
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  color: rgba(245, 242, 235, 0.5);
  border: 1px solid rgba(138, 141, 143, 0.3);
  padding: 4px 10px;
}
.page-home__chart-grid {
  position: absolute;
  inset: 10px;
  display: grid;
  grid-template-rows: repeat(5, 1fr);
  pointer-events: none;
  z-index: 0;
}
.page-home__chart-grid span {
  border-bottom: 1px dashed rgba(138, 141, 143, 0.22);
}
.page-home__chart-img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 380px;
  object-fit: cover;
  opacity: 0.65;
  position: relative;
  z-index: 1;
}
.page-home__chart-float {
  position: absolute;
  left: 18px;
  bottom: 18px;
  background: rgba(10, 11, 13, 0.92);
  border: 1px solid rgba(212, 175, 55, 0.5);
  padding: 14px 16px;
  z-index: 2;
  display: grid;
  gap: 4px;
}
.page-home__chart-round {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.3rem;
  color: var(--home-gold);
}
.page-home__chart-red {
  color: var(--home-red);
  font-size: 0.82rem;
}
.page-home__chart-yellow {
  color: var(--home-yellow);
  font-size: 0.82rem;
}
.page-home__panel-note {
  margin-top: 14px;
  font-size: 0.7rem;
  color: var(--home-gray);
  text-align: right;
}

/* 战报 */
.page-home__reports {
  background: var(--home-ivory);
  color: #141619;
  padding: 76px 0 88px;
}
.page-home__reports .section-tag,
.page-home__reports .section-title,
.page-home__reports .data-label {
  color: #141619;
}
.page-home__reports .section-tag {
  border-color: rgba(20, 22, 25, 0.3);
}
.page-home__reports-head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 30px;
}
.page-home__reports-thumb {
  position: relative;
  height: 180px;
  overflow: hidden;
  margin-bottom: 34px;
  border-left: 4px solid var(--home-gold);
}
.page-home__reports-thumb-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.32;
}
.page-home__reports-thumb::after {
  content: "LIVE REPORTS // 实时战报流";
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.4rem;
  letter-spacing: 0.14em;
  color: rgba(20, 22, 25, 0.85);
}
.page-home__report-list {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 2px solid rgba(20, 22, 25, 0.2);
}
.page-home__report-item {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 16px;
  align-items: center;
  padding: 22px 6px;
  border-bottom: 1px solid rgba(20, 22, 25, 0.14);
  text-decoration: none;
  transition: background 0.3s, padding 0.3s;
  cursor: default;
}
.page-home__report-item:hover {
  background: rgba(212, 175, 55, 0.08);
  padding-left: 14px;
}
.page-home__report-badge {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 6px 10px;
  border: 1px solid;
}
.page-home__report-badge--red {
  color: var(--home-red);
  border-color: var(--home-red);
}
.page-home__report-badge--yellow {
  color: #A88800;
  border-color: var(--home-yellow);
}
.page-home__report-meta .data-label {
  display: block;
  margin-bottom: 6px;
  font-size: 0.66rem;
}
.page-home__report-title {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.98rem;
  line-height: 1.5;
  margin: 0;
}
.page-home__report-arrow {
  font-size: 1.2rem;
  color: var(--home-gold);
  opacity: 0;
  transform: translateX(-8px);
  transition: opacity 0.3s, transform 0.3s;
}
.page-home__report-item:hover .page-home__report-arrow {
  opacity: 1;
  transform: translateX(0);
}

/* 客户端功能 */
.page-home__client {
  padding: 80px 0;
}
.page-home__client--carbon {
  background: var(--home-carbon);
}
.page-home__client-layout {
  display: grid;
  gap: 44px;
  align-items: center;
}
.page-home__client-visual {
  position: relative;
  border: 1px solid rgba(212, 175, 55, 0.35);
  padding: 8px;
}
.page-home__client-img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  opacity: 0.82;
}
.page-home__client-device {
  position: absolute;
  background: rgba(10, 11, 13, 0.94);
  border: 1px solid rgba(212, 175, 55, 0.55);
  padding: 12px;
  display: grid;
  gap: 6px;
  width: 110px;
}
.page-home__client-device--phone {
  right: -14px;
  top: 28px;
}
.page-home__device-bar {
  width: 22px;
  height: 3px;
  background: var(--home-gray);
}
.page-home__device-line {
  display: block;
  height: 4px;
  background: rgba(138, 141, 143, 0.5);
}
.page-home__device-line--gold {
  height: 8px;
  background: var(--home-gold);
}
.page-home__client-copy .section-lead {
  margin-bottom: 26px;
}
.page-home__client-features {
  list-style: none;
  margin: 0 0 28px;
  padding: 0;
  display: grid;
  gap: 12px;
}
.page-home__client-features li {
  font-size: 0.84rem;
  line-height: 1.7;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: rgba(245, 242, 235, 0.82);
}
.page-home__feature-dot {
  flex: 0 0 auto;
  width: 8px;
  height: 8px;
  background: var(--home-gold);
  display: inline-block;
  margin-top: 8px;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}
.page-home__client-note {
  margin-top: 18px;
  font-size: 0.7rem;
  color: var(--home-gray);
  letter-spacing: 0.06em;
  border-top: 1px solid rgba(138, 141, 143, 0.25);
  padding-top: 14px;
}

/* 可信度 */
.page-home__trust {
  background: var(--home-ivory);
  color: #141619;
  padding: 78px 0;
}
.page-home__trust .section-tag,
.page-home__trust .section-title {
  color: #141619;
}
.page-home__trust .section-tag {
  border-color: rgba(20, 22, 25, 0.3);
}
.page-home__trust-head {
  margin-bottom: 38px;
}
.page-home__trust-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(2, 1fr);
}
.page-home__trust-card {
  border: 1px solid rgba(20, 22, 25, 0.18);
  border-top: 3px solid var(--home-gold);
  padding: 22px 18px;
  background: #fff;
  transition: transform 0.3s, box-shadow 0.3s;
}
.page-home__trust-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 28px rgba(20, 22, 25, 0.12);
}
.page-home__trust-num {
  font-family: var(--font-num);
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1.2;
  color: var(--home-gold);
  display: block;
}
.page-home__trust-num::after {
  content: "";
  display: block;
  width: 36px;
  height: 2px;
  background: #141619;
  margin: 10px 0 12px;
}
.page-home__trust-label {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1rem;
  margin: 0 0 8px;
}
.page-home__trust-desc {
  font-size: 0.78rem;
  line-height: 1.7;
  color: rgba(20, 22, 25, 0.7);
}
.page-home__trust-foot {
  margin-top: 36px;
  padding-top: 24px;
  border-top: 2px solid rgba(20, 22, 25, 0.12);
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  justify-content: space-between;
}
.page-home__trust-foot p {
  font-size: 0.8rem;
  line-height: 1.8;
  color: rgba(20, 22, 25, 0.78);
  max-width: 720px;
  margin: 0;
}
.page-home__trust-foot a {
  color: #141619;
  font-weight: 700;
  font-size: 0.84rem;
  text-decoration: none;
  border-bottom: 2px solid var(--home-gold);
  padding-bottom: 2px;
  white-space: nowrap;
}

/* CTA带 */
.page-home__cta-band {
  background: var(--home-black);
  position: relative;
  padding: 64px 0;
  overflow: hidden;
}
.page-home__cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, rgba(212, 175, 55, 0.12), transparent 38%, rgba(230, 57, 70, 0.1) 70%, transparent);
  clip-path: polygon(0 0, 100% 0, 100% 100%, 24% 100%);
}
.page-home__cta-inner {
  width: min(var(--home-max), calc(100% - 2 * var(--home-pad)));
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  position: relative;
  z-index: 1;
}
.page-home__cta-title {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: clamp(1.25rem, 3vw, 2rem);
  line-height: 1.3;
  color: var(--home-ivory);
  margin: 10px 0 0;
  max-width: 720px;
}

@media (min-width: 640px) {
  .page-home {
    --home-pad: 36px;
  }
  .page-home__entry-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .page-home__panel-stats {
    grid-template-columns: repeat(4, 1fr);
  }
  .page-home__trust-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  .page-home__hero-grid {
    grid-template-columns: 1.4fr 0.9fr;
  }
}

@media (min-width: 960px) {
  .page-home {
    --home-pad: 48px;
  }
  .page-home__hero-frame {
    padding-top: calc(var(--header-h, 74px) + 72px);
    padding-bottom: 80px;
  }
  .page-home__quick-entry {
    padding: 96px 0 104px;
  }
  .page-home__panel {
    padding: 108px 0;
  }
  .page-home__panel-layout {
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
  }
  .page-home__panel-copy {
    order: 1;
  }
  .page-home__panel-visual {
    order: 2;
  }
  .page-home__reports {
    padding: 100px 0 112px;
  }
  .page-home__client {
    padding: 104px 0;
  }
  .page-home__client-layout {
    grid-template-columns: 1fr 1fr;
    gap: 72px;
  }
  .page-home__trust {
    padding: 100px 0;
  }
  .page-home__trust-card {
    padding: 28px 24px;
  }
  .page-home__report-item {
    grid-template-columns: 160px 1fr auto;
  }
  .page-home__reports-thumb {
    height: 220px;
  }
}

@media (min-width: 1280px) {
  .page-home__hero-frame::before {
    inset: 64px 48px 42px;
  }
  .page-home__hero-frame::after {
    inset: 72px 56px 50px;
  }
  .page-home__hero-ruler {
    bottom: 30px;
  }
  .page-home__report-item {
    padding: 26px 12px;
  }
}
