.page-home {
  --home-hero-bg: #060D18;
  --home-report-bg: linear-gradient(135deg, #0B1F3A 0%, #060D18 60%, #0B1F3A 100%);
  --home-card-bg: #1E2A3A;
  --home-line: rgba(160, 176, 192, 0.18);
  --home-glow: rgba(57, 255, 20, 0.12);
  position: relative;
  overflow-x: hidden;
  background-color: #060D18;
}

.page-home .container {
  max-width: 1240px;
  margin: 0 auto;
  padding-left: 24px;
  padding-right: 24px;
}

/* ---------- 首屏 ---------- */
.page-home .home-hero {
  position: relative;
  background: linear-gradient(135deg, #060D18 0%, #0B1F3A 55%, #0B1F3A 75%, #060D18 100%);
  padding: 72px 0 96px;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 48px), 0 100%);
}

.page-home .home-hero::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 45%;
  height: 100%;
  background: linear-gradient(180deg, rgba(57, 255, 20, 0.08) 0%, transparent 40%);
  z-index: 0;
}

.page-home .home-hero::after {
  content: "";
  position: absolute;
  bottom: 48px;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #39FF14 0%, #FF6B35 30%, transparent 60%);
  opacity: 0.7;
}

.page-home .home-hero__inner {
  position: relative;
  z-index: 1;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
}

.page-home .home-hero__copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.page-home .home-hero__eyebrow {
  font-family: var(--font-data);
  font-size: 14px;
  letter-spacing: 0.14em;
  color: #39FF14;
  text-transform: uppercase;
  margin: 0 0 16px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.page-home .home-hero__eyebrow::before {
  content: "";
  display: inline-block;
  width: 32px;
  height: 3px;
  background: #FF6B35;
}

.page-home .home-hero__title {
  font-family: var(--font-head);
  font-size: clamp(42px, 7vw, 84px);
  line-height: 1;
  font-weight: 900;
  color: #FFFFFF;
  margin: 0 0 24px;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  max-width: 760px;
}

.page-home .home-hero__dot {
  color: #39FF14;
  margin: 0 0.1em;
}

.page-home .home-hero__lead {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.8;
  color: #A0B0C0;
  max-width: 540px;
  margin: 0 0 32px;
}

.page-home .home-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 48px;
}

.page-home .home-hero__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  padding-top: 24px;
  border-top: 1px solid var(--home-line);
  width: 100%;
}

.page-home .home-hero__stat-num {
  display: block;
  font-family: var(--font-data);
  font-size: 34px;
  line-height: 1.2;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 4px;
}

.page-home .home-hero__stat-num:last-child {
  color: #FF6B35;
}

.page-home .home-hero__stat-label {
  font-family: var(--font-body);
  font-size: 13px;
  color: #A0B0C0;
  letter-spacing: 0.1em;
}

.page-home .home-hero__visual {
  position: relative;
  min-height: 220px;
}

.page-home .home-hero__paths {
  position: absolute;
  top: -40px;
  left: -80px;
  width: calc(100% + 80px);
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

.page-home .home-hero__arrow {
  stroke-dasharray: 4 4;
}

.page-home .home-hero__img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  clip-path: polygon(0 0, calc(100% - 24px) 0, 100% 24px, 100% 100%, 24px 100%, 0 calc(100% - 24px));
}

.page-home .home-hero__img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, #0B1F3A 0%, transparent 40%, #FF6B35 100%);
}

/* ---------- 数据公告 ---------- */
.page-home .home-ticker {
  display: flex;
  align-items: center;
  gap: 16px;
  background: #0B1F3A;
  border-top: 1px solid var(--home-line);
  border-bottom: 1px solid var(--home-line);
  padding: 14px 24px;
  overflow-x: hidden;
  white-space: nowrap;
}

.page-home .home-ticker__label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-data);
  font-size: 12px;
  color: #39FF14;
  flex-shrink: 0;
}

.page-home .home-ticker__message {
  font-family: var(--font-body);
  font-size: 13px;
  color: #A0B0C0;
  animation: homeTicker 24s linear infinite;
}

/* ---------- 核心功能 Bento ---------- */
.page-home .home-features {
  padding: 88px 0 80px;
  background: #060D18;
}

.page-home .home-features .section-head {
  max-width: 720px;
  margin-bottom: 48px;
}

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

.page-home .home-features__card,
.page-home .home-features__media-card,
.page-home .home-features__callout {
  background: var(--home-card-bg);
  border-radius: 12px;
  padding: 28px;
  position: relative;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
  clip-path: polygon(0 0, calc(100% - 16px) 0, 100% 16px, 100% 100%, 0 100%);
}

.page-home .home-features__card:hover,
.page-home .home-features__media-card:hover,
.page-home .home-features__callout:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.page-home .home-features__card--primary {
  background: #0B1F3A;
  border: 1px solid rgba(57, 255, 20, 0.35);
}

.page-home .home-features__card-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 18px;
}

.page-home .home-features__card-index {
  font-family: var(--font-data);
  font-size: 28px;
  font-weight: 700;
  color: #FF6B35;
  line-height: 1;
  opacity: 0.8;
}

.page-home .home-features__card-title {
  font-family: var(--font-head);
  font-size: 24px;
  font-weight: 700;
  color: #FFFFFF;
  margin: 0 0 10px;
  text-transform: uppercase;
  line-height: 1.3;
}

.page-home .home-features__card-desc {
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.7;
  color: #A0B0C0;
  margin: 0 0 20px;
}

.page-home .home-features__metric {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 16px;
}

.page-home .home-features__metric-label {
  font-family: var(--font-body);
  font-size: 13px;
  color: #A0B0C0;
}

.page-home .home-features__media-card {
  padding: 0;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr;
}

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

.page-home .home-features__media-caption {
  padding: 20px 24px 24px;
}

.page-home .home-features__media-caption p {
  font-family: var(--font-body);
  font-size: 14px;
  color: #A0B0C0;
  line-height: 1.6;
  margin: 8px 0 0;
}

.page-home .home-features__callout {
  background: #0B1F3A;
  border: 1px solid rgba(255, 107, 53, 0.35);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.page-home .home-features__callout-title {
  font-family: var(--font-body);
  font-size: 14px;
  color: #A0B0C0;
  margin: 0 0 12px;
  letter-spacing: 0.08em;
}

.page-home .home-features__callout-value {
  font-family: var(--font-data);
  font-size: 44px;
  font-weight: 700;
  color: #39FF14;
  line-height: 1.2;
  margin: 0 0 12px;
}

.page-home .home-features__callout-desc {
  font-family: var(--font-body);
  font-size: 13px;
  line-height: 1.6;
  color: #A0B0C0;
  margin: 0;
}

/* ---------- 战报订阅 ---------- */
.page-home .home-report {
  position: relative;
  background: var(--home-report-bg);
  padding: 88px 0;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 36px), 0 100%);
}

.page-home .home-report::before {
  content: "";
  position: absolute;
  top: 48px;
  left: -40px;
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, rgba(57, 255, 20, 0.12) 0%, transparent 70%);
  border-radius: 50%;
}

.page-home .home-report__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}

.page-home .home-report__copy {
  position: relative;
  z-index: 1;
}

.page-home .home-report__lead {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.8;
  color: #A0B0C0;
  margin: 0 0 28px;
  max-width: 480px;
}

.page-home .home-report__list {
  list-style: none;
  padding: 0;
  margin: 0 0 36px;
  display: grid;
  gap: 12px;
}

.page-home .home-report__list-item {
  font-family: var(--font-body);
  font-size: 15px;
  color: #FFFFFF;
  padding-left: 28px;
  position: relative;
}

.page-home .home-report__list-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 14px;
  height: 14px;
  background: #39FF14;
  clip-path: polygon(0 0, 100% 0, 0 100%);
}

.page-home .home-report__visual {
  position: relative;
  min-height: 280px;
}

.page-home .home-report__img {
  width: 100%;
  height: auto;
  object-fit: cover;
  clip-path: polygon(0 0, calc(100% - 32px) 0, 100% 32px, 100% 100%, 32px 100%, 0 calc(100% - 32px));
}

.page-home .home-report__decor {
  position: absolute;
  bottom: -16px;
  right: -16px;
  width: 120px;
  height: 120px;
  border: 3px solid rgba(255, 107, 53, 0.4);
  border-radius: 50%;
  z-index: -1;
}

.page-home .home-report__decor::before {
  content: "";
  position: absolute;
  inset: 14px;
  border: 2px dashed rgba(57, 255, 20, 0.4);
  border-radius: 50%;
}

.page-home .home-report__live-card {
  position: absolute;
  bottom: -24px;
  left: -12px;
  background: #1E2A3A;
  border: 1px solid rgba(57, 255, 20, 0.3);
  border-radius: 10px;
  padding: 18px 20px;
  min-width: 240px;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.4);
}

.page-home .home-report__live-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
}

.page-home .home-report__live-label {
  font-family: var(--font-data);
  font-size: 12px;
  color: #39FF14;
  letter-spacing: 0.12em;
}

.page-home .home-report__live-time {
  margin-left: auto;
  font-family: var(--font-body);
  font-size: 11px;
  color: #A0B0C0;
  border: 1px solid rgba(160, 176, 192, 0.3);
  padding: 2px 8px;
  border-radius: 4px;
}

.page-home .home-report__live-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.page-home .home-report__live-team {
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 700;
  color: #FFFFFF;
  text-transform: uppercase;
}

.page-home .home-report__live-score {
  font-family: var(--font-data);
  font-size: 22px;
  font-weight: 700;
  color: #FF6B35;
  letter-spacing: 0.04em;
}

.page-home .home-report__live-desc {
  font-family: var(--font-body);
  font-size: 11px;
  color: #39FF14;
  text-align: center;
  margin: 10px 0 0;
}

/* ---------- 快速入口 ---------- */
.page-home .home-quick {
  padding: 96px 0 88px;
  background: #060D18;
}

.page-home .home-quick .section-head {
  max-width: 720px;
  margin-bottom: 40px;
}

.page-home .home-quick__chart {
  margin-bottom: 40px;
}

.page-home .home-quick__chart-img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 12px;
}

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

.page-home .home-quick__card {
  padding: 28px;
  background: #1E2A3A;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-decoration: none;
  position: relative;
  clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 0 100%);
  transition: transform 0.3s var(--ease), border-color 0.3s var(--ease);
  border: 1px solid transparent;
}

.page-home .home-quick__card:hover {
  transform: translateY(-2px);
  border-color: rgba(57, 255, 20, 0.5);
}

.page-home .home-quick__card-num {
  font-family: var(--font-data);
  font-size: 18px;
  font-weight: 700;
  color: #FF6B35;
  margin-bottom: 16px;
}

.page-home .home-quick__card-title {
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 700;
  color: #FFFFFF;
  margin: 0 0 12px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.page-home .home-quick__card-desc {
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.7;
  color: #A0B0C0;
  margin: 0 0 24px;
}

.page-home .home-quick__card-link {
  font-family: var(--font-data);
  font-size: 13px;
  color: #39FF14;
  letter-spacing: 0.06em;
  margin-top: auto;
  text-transform: uppercase;
}

/* ---------- 最新动态 ---------- */
.page-home .home-updates {
  padding: 40px 0 72px;
  background: #060D18;
}

.page-home .home-updates .section-head {
  margin-bottom: 32px;
}

.page-home .home-updates__list {
  display: grid;
  gap: 0;
}

.page-home .home-updates__item {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  padding: 20px 0;
  border-bottom: 1px solid var(--home-line);
  text-decoration: none;
  transition: background 0.2s var(--ease);
}

.page-home .home-updates__item:first-child {
  border-top: 3px solid #39FF14;
}

.page-home .home-updates__item:hover {
  background: rgba(30, 42, 58, 0.5);
}

.page-home .home-updates__tag {
  font-family: var(--font-data);
  font-size: 11px;
  letter-spacing: 0.16em;
  color: #FF6B35;
  text-transform: uppercase;
  padding: 4px 10px;
  border: 1px solid rgba(255, 107, 53, 0.5);
  border-radius: 3px;
  justify-self: start;
}

.page-home .home-updates__title {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 500;
  color: #FFFFFF;
  line-height: 1.5;
  transition: color 0.2s var(--ease);
}

.page-home .home-updates__item:hover .home-updates__title {
  color: #39FF14;
}

.page-home .home-updates__arrow {
  font-family: var(--font-data);
  font-size: 18px;
  color: #A0B0C0;
  transition: color 0.2s var(--ease), transform 0.2s var(--ease);
}

.page-home .home-updates__item:hover .home-updates__arrow {
  color: #39FF14;
  transform: translateX(4px);
}

/* ---------- 信任陈述 ---------- */
.page-home .home-trust {
  padding: 72px 0 88px;
  background: linear-gradient(180deg, #060D18 0%, #0B1F3A 50%, #060D18 100%);
}

.page-home .home-trust__inner {
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
}

.page-home .home-trust__inner::before {
  content: "";
  display: block;
  width: 48px;
  height: 48px;
  margin: 0 auto 24px;
  background: linear-gradient(135deg, #39FF14 0%, #FF6B35 100%);
  clip-path: polygon(0 0, 100% 0, 0 100%);
}

.page-home .home-trust__statement {
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 700;
  line-height: 1.6;
  color: #FFFFFF;
  margin: 0 0 24px;
}

.page-home .home-trust__data {
  font-family: var(--font-body);
  font-size: 15px;
  color: #A0B0C0;
  letter-spacing: 0.06em;
}

/* ---------- 通用小组件 ---------- */
.page-home .stat-line {
  display: block;
  height: 2px;
  background: repeating-linear-gradient(135deg, #39FF14 0 8px, transparent 8px 14px);
  margin: 16px 0 16px;
  flex-shrink: 0;
}

.page-home .meta-label {
  font-family: var(--font-data);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #39FF14;
  margin: 0 0 12px;
}

.page-home .section-title {
  font-family: var(--font-head);
  font-size: clamp(32px, 4.5vw, 52px);
  font-weight: 900;
  line-height: 1.15;
  color: #FFFFFF;
  text-transform: uppercase;
  margin: 0 0 16px;
}

.page-home .section-lead {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: #A0B0C0;
  margin: 0;
}

/* ---------- 平板 ---------- */
@media (min-width: 700px) {

  .page-home .home-hero__inner {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 32px;
    align-items: center;
  }

  .page-home .home-hero {
    padding: 96px 0 120px;
  }

  .page-home .home-ticker {
    padding: 14px 40px;
  }

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

  .page-home .home-features__card--primary {
    grid-column: 1 / -1;
  }

  .page-home .home-features__media-card {
    grid-column: 1 / -1;
    grid-template-columns: 1fr 1fr;
  }

  .page-home .home-features__media-img {
    height: 300px;
  }

  .page-home .home-features__media-caption {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

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

  .page-home .home-report__live-card {
    left: -24px;
  }

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

  .page-home .home-updates__item {
    grid-template-columns: 150px 1fr 40px;
    gap: 16px;
    align-items: center;
    padding: 24px 16px;
  }

  .page-home .home-trust__statement {
    font-size: 28px;
  }

}

/* ---------- 桌面 ---------- */
@media (min-width: 1024px) {

  .page-home .home-hero {
    padding: 120px 0 140px;
  }

  .page-home .home-hero__inner {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 64px;
  }

  .page-home .home-hero__title {
    font-size: 84px;
  }

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

  .page-home .home-features__card--primary {
    grid-column: span 2;
  }

  .page-home .home-features__card {
    grid-column: span 1;
  }

  .page-home .home-features__media-card {
    grid-column: span 2;
    grid-template-columns: 1fr 0.8fr;
  }

  .page-home .home-features__media-img {
    height: 100%;
    min-height: 260px;
  }

  .page-home .home-features__callout {
    grid-column: span 1;
  }

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

  .page-home .home-trust {
    padding: 96px 0 112px;
  }

}

/* ---------- 动画 ---------- */
@keyframes homeTicker {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .page-home .home-ticker__message {
    animation: none;
    white-space: normal;
  }
}
