.page-home {
  background: var(--color-bg-deep);
  color: var(--color-text-bright);
  font-family: var(--font-body);
  overflow-x: hidden;
}

/* ===== 首屏主视觉 ===== */
.page-home .home-hero {
  position: relative;
  isolation: isolate;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background:
    radial-gradient(42rem 26rem at 82% 12%, rgba(0, 255, 136, 0.14), transparent 62%),
    radial-gradient(34rem 22rem at 12% 88%, rgba(108, 99, 255, 0.24), transparent 60%),
    linear-gradient(135deg, var(--color-bg-deep) 0%, #241040 48%, #140820 100%);
}

.page-home .home-hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 48px;
  background: var(--color-bg-cool);
  clip-path: polygon(0 0, 100% 48px, 100% 100%, 0 100%);
  z-index: 0;
}

.page-home .home-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  background: repeating-linear-gradient(-45deg, transparent 0 8px, rgba(108, 99, 255, 0.05) 8px 9px);
}

.page-home .home-hero__bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.25;
  filter: blur(6px) saturate(60%);
  transform: scale(1.05);
}

.page-home .home-hero__stream {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, transparent, var(--color-accent-neon), transparent);
  animation: home-stream-fall 3.6s linear infinite;
  opacity: 0.55;
}

.page-home .home-hero__stream--one {
  left: 18%;
  animation-duration: 2.8s;
}

.page-home .home-hero__stream--two {
  left: 72%;
  animation-delay: 1.2s;
  animation-duration: 4.2s;
}

.page-home .home-hero__stream--three {
  left: 55%;
  animation-delay: 2s;
  animation-duration: 3s;
  width: 1px;
  opacity: 0.3;
}

.page-home .home-hero .container {
  position: relative;
  z-index: 1;
  padding-top: 7rem;
  padding-bottom: 4.5rem;
}

.page-home .home-breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 3.5rem;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  color: rgba(244, 244, 248, 0.6);
}

.page-home .home-breadcrumb a {
  color: rgba(244, 244, 248, 0.8);
  text-decoration: none;
  border-bottom: 1px solid rgba(0, 255, 136, 0.35);
}

.page-home .home-breadcrumb a:hover {
  color: var(--color-accent-neon);
}

.page-home .home-hero__layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 3rem;
}

.page-home .home-hero__content {
  max-width: 46rem;
}

.page-home .home-hero__kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin: 0 0 1.5rem;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--color-accent-neon);
  text-transform: uppercase;
}

.page-home .home-hero__dot {
  width: 0.55rem;
  height: 0.55rem;
  background: var(--color-accent-neon);
  clip-path: polygon(0 0, 100% 0, 100% 100%);
}

.page-home .home-hero h1 {
  margin: 0 0 1.5rem;
  font-family: var(--font-headings);
  font-size: clamp(2.6rem, 9vw, 5.6rem);
  line-height: 1.04;
  letter-spacing: -0.04em;
  color: var(--color-text-bright);
}

.page-home .home-hero h1 em {
  display: block;
  font-style: normal;
  color: var(--color-accent-neon);
}

.page-home .home-hero__lead {
  max-width: 35rem;
  margin: 0 0 2.2rem;
  font-size: clamp(1rem, 1.4vw, 1.2rem);
  line-height: 1.85;
  font-weight: 300;
  color: rgba(244, 244, 248, 0.82);
}

.page-home .home-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

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

.page-home .home-hero__status-card {
  min-width: 0;
  background: rgba(42, 26, 74, 0.78);
  border: 1px solid rgba(108, 99, 255, 0.35);
  clip-path: polygon(0 0, calc(100% - 14px) 0, 100% 14px, 100% 100%, 14px 100%, 0 calc(100% - 14px));
  padding: 1rem 0.9rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.page-home .home-hero__status-card:last-child {
  grid-column: 1 / -1;
}

.page-home .home-hero__status-label {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  color: rgba(244, 244, 248, 0.55);
  text-transform: uppercase;
}

.page-home .home-hero__status-value {
  font-family: var(--font-headings);
  font-weight: 900;
  font-size: 1.05rem;
  line-height: 1.2;
  color: var(--color-accent-neon);
}

.page-home .home-hero__status-card:nth-child(2) .home-hero__status-value {
  color: var(--color-text-bright);
}

.page-home .home-hero__status-card:nth-child(3) .home-hero__status-value {
  color: var(--color-accent-warm);
}

@keyframes home-stream-fall {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(100%);
  }
}

/* ===== 通用标题结构 ===== */
.page-home .home-section-top {
  max-width: 54rem;
  margin-bottom: 3rem;
}

.page-home .home-section-index {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin: 0 0 0.75rem;
  font-family: var(--font-headings);
  font-weight: 900;
  font-size: 0.88rem;
  letter-spacing: 0.22em;
  color: var(--color-accent-warm);
}

.page-home .home-section-index::after {
  content: "";
  width: 3.5rem;
  height: 3px;
  background: var(--color-accent-warm);
  clip-path: polygon(0 0, 100% 0, calc(100% - 5px) 100%, 0 100%);
}

.page-home .home-section-title {
  margin: 0 0 1rem;
  font-family: var(--font-headings);
  font-size: clamp(2rem, 5vw, 3.6rem);
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.page-home .home-section-desc {
  max-width: 42rem;
  margin: 0;
  font-size: 1rem;
  line-height: 1.8;
  font-weight: 300;
}

/* ===== 常用项入口 ===== */
.page-home .home-quick {
  background: var(--color-bg-cool);
  color: var(--color-text-dark);
  padding: 5rem 0;
}

.page-home .home-quick .home-section-title {
  color: var(--color-text-dark);
}

.page-home .home-quick .home-section-desc {
  color: rgba(13, 13, 26, 0.7);
}

.page-home .home-quick__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 1.5rem;
}

.page-home .home-quick__card {
  --card-accent: var(--color-border-purple);
  position: relative;
  min-width: 0;
  background: var(--color-text-bright);
  border: 1px solid rgba(13, 13, 26, 0.08);
  clip-path: polygon(0 0, calc(100% - 18px) 0, 100% 18px, 100% 100%, 18px 100%, 0 calc(100% - 18px));
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.75rem;
  box-shadow: 0 16px 40px rgba(26, 11, 46, 0.08);
  transition: transform 280ms ease, box-shadow 280ms ease;
}

.page-home .home-quick__card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--card-accent);
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}

.page-home .home-quick__card--notice {
  --card-accent: #FF6B00;
}

.page-home .home-quick__card--score {
  --card-accent: #6C63FF;
}

.page-home .home-quick__card--app {
  --card-accent: #00A878;
}

.page-home .home-quick__card--member {
  --card-accent: #4B2E83;
}

.page-home .home-quick__card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 50px rgba(26, 11, 46, 0.16);
}

.page-home .home-quick__card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: 100%;
}

.page-home .home-quick__num {
  font-family: var(--font-headings);
  font-weight: 900;
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  background: rgba(13, 13, 26, 0.06);
  color: rgba(13, 13, 26, 0.72);
  padding: 0.28rem 0.55rem;
  clip-path: polygon(0 0, calc(100% - 6px) 0, 100% 6px, 100% 100%, 6px 100%, 0 calc(100% - 6px));
}

.page-home .home-quick__tag {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: rgba(13, 13, 26, 0.66);
  text-transform: uppercase;
  border-bottom: 2px solid var(--card-accent);
  padding-bottom: 0.2rem;
}

.page-home .home-quick__card h3 {
  margin: 0;
  font-family: var(--font-headings);
  font-size: 1.3rem;
  line-height: 1.35;
  letter-spacing: -0.02em;
  color: var(--color-text-dark);
}

.page-home .home-quick__card p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.7;
  font-weight: 300;
  color: rgba(13, 13, 26, 0.7);
}

.page-home .home-quick__list {
  list-style: none;
  margin: 0.2rem 0 1rem;
  padding: 0;
  display: grid;
  gap: 0.45rem;
  font-size: 0.9rem;
}

.page-home .home-quick__list li {
  position: relative;
  padding-left: 1.15rem;
  color: rgba(13, 13, 26, 0.75);
}

.page-home .home-quick__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 0.55rem;
  height: 0.55rem;
  background: var(--card-accent);
  clip-path: polygon(0 0, 100% 0, 100% 100%);
}

.page-home .home-quick__img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: 170px;
  object-fit: cover;
  object-position: center;
  flex-shrink: 0;
  margin-top: 0.2rem;
  clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 12px 100%, 0 calc(100% - 12px));
}

.page-home .home-quick__link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: auto;
  padding-bottom: 0.2rem;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--color-text-dark);
  text-decoration: none;
  border-bottom: 2px solid var(--card-accent);
}

.page-home .home-quick__link span {
  color: var(--card-accent);
  transition: transform 200ms ease;
}

.page-home .home-quick__link:hover span {
  transform: translateX(4px);
}

/* ===== 实时数据概览 ===== */
.page-home .home-live {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(120deg, rgba(108, 99, 255, 0.12) 0%, transparent 35%),
    var(--color-bg-graphite);
  color: var(--color-text-bright);
  padding: 5rem 0;
}

.page-home .home-live::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--color-accent-neon), var(--color-accent-warm), transparent 80%);
}

.page-home .home-live .home-section-title {
  color: var(--color-text-bright);
}

.page-home .home-live .home-section-desc {
  color: rgba(244, 244, 248, 0.7);
}

.page-home .home-live .home-section-index {
  color: var(--color-accent-neon);
}

.page-home .home-live .home-section-index::after {
  background: var(--color-accent-neon);
}

.page-home .home-live__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 1.5rem;
}

.page-home .home-live__panel {
  min-width: 0;
  background: rgba(42, 26, 74, 0.72);
  border: 1px solid rgba(108, 99, 255, 0.3);
  clip-path: polygon(0 0, calc(100% - 16px) 0, 100% 16px, 100% 100%, 16px 100%, 0 calc(100% - 16px));
  padding: 1.75rem;
}

.page-home .home-live__panel h3 {
  margin: 0 0 1rem;
  font-family: var(--font-headings);
  font-size: 1.35rem;
  letter-spacing: -0.02em;
  color: var(--color-accent-warm);
}

.page-home .home-live__panel--injury h3 {
  color: var(--color-accent-neon);
}

.page-home .home-live__panel--timeline h3 {
  color: var(--color-text-bright);
}

.page-home .home-live__panel p {
  margin: 0 0 1.2rem;
  font-size: 0.95rem;
  line-height: 1.75;
  font-weight: 300;
  color: rgba(244, 244, 248, 0.78);
}

.page-home .home-live__meta {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.65rem;
}

.page-home .home-live__meta li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: rgba(244, 244, 248, 0.85);
}

.page-home .home-live__meta li span {
  min-width: 3.2rem;
  text-align: center;
  font-weight: 900;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  color: var(--color-accent-neon);
  background: rgba(0, 255, 136, 0.12);
  padding: 0.3rem 0.4rem;
  clip-path: polygon(0 0, calc(100% - 6px) 0, 100% 6px, 100% 100%, 6px 100%, 0 calc(100% - 6px));
}

.page-home .home-live__timeline {
  display: grid;
  gap: 1rem;
  list-style: none;
  margin: 0;
  padding: 0;
  counter-reset: liveStep;
}

.page-home .home-live__timeline-item {
  position: relative;
  padding-left: 2rem;
  counter-increment: liveStep;
}

.page-home .home-live__timeline-item::before {
  content: counter(liveStep, decimal-leading-zero);
  position: absolute;
  left: 0;
  top: 0;
  width: 1.6rem;
  height: 1.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-headings);
  font-weight: 900;
  font-size: 0.78rem;
  color: var(--color-accent-neon);
  background: rgba(0, 255, 136, 0.08);
  clip-path: polygon(0 0, 100% 0, 100% 100%, 30% 100%, 0 70%);
}

.page-home .home-live__timeline-item::after {
  content: "";
  position: absolute;
  left: 0.75rem;
  top: 2rem;
  bottom: -1rem;
  width: 1px;
  background: linear-gradient(to bottom, rgba(0, 255, 136, 0.45), transparent);
}

.page-home .home-live__timeline-item:last-child::after {
  display: none;
}

.page-home .home-live__timeline-item span {
  display: block;
  margin-bottom: 0.2rem;
  font-family: var(--font-headings);
  font-weight: 900;
  font-size: 1rem;
  color: var(--color-text-bright);
}

.page-home .home-live__timeline-item p {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.6;
  color: rgba(244, 244, 248, 0.68);
}

.page-home .home-live__panel--service {
  background: linear-gradient(150deg, rgba(255, 107, 0, 0.12), rgba(26, 11, 46, 0.68));
  border-color: rgba(255, 107, 0, 0.3);
}

.page-home .home-live__link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-right: 1.5rem;
  padding-bottom: 0.2rem;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--color-accent-warm);
  text-decoration: none;
  border-bottom: 2px solid rgba(255, 107, 0, 0.45);
}

.page-home .home-live__link:hover {
  color: var(--color-accent-neon);
  border-bottom-color: var(--color-accent-neon);
}

/* ===== 平台信任声明 ===== */
.page-home .home-trust {
  background: var(--color-bg-cool);
  color: var(--color-text-dark);
  padding: 5rem 0;
}

.page-home .home-trust .home-section-title {
  color: var(--color-text-dark);
}

.page-home .home-trust .home-section-desc {
  color: rgba(13, 13, 26, 0.7);
}

.page-home .home-trust__stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-bottom: 3rem;
}

.page-home .home-trust__stat {
  min-width: 0;
  background: var(--color-text-bright);
  border: 1px solid rgba(13, 13, 26, 0.08);
  clip-path: polygon(0 0, calc(100% - 14px) 0, 100% 14px, 100% 100%, 14px 100%, 0 calc(100% - 14px));
  padding: 1.75rem 1.25rem;
  box-shadow: 0 8px 24px rgba(26, 11, 46, 0.06);
}

.page-home .home-trust__num {
  display: flex;
  align-items: baseline;
  white-space: nowrap;
  margin-bottom: 0.4rem;
  font-family: var(--font-headings);
  font-weight: 900;
  font-size: clamp(2rem, 7vw, 3.4rem);
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--color-bg-primary);
}

.page-home .home-trust__num span {
  margin-left: 0.12em;
  font-size: 0.5em;
  color: var(--color-accent-warm);
}

.page-home .home-trust__label {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: rgba(13, 13, 26, 0.55);
  text-transform: uppercase;
}

.page-home .home-trust__milestones {
  background: var(--color-bg-graphite);
  color: var(--color-text-bright);
  clip-path: polygon(0 0, calc(100% - 20px) 0, 100% 20px, 100% 100%, 20px 100%, 0 calc(100% - 20px));
  padding: 2rem 1.75rem;
}

.page-home .home-trust__milestones h3 {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin: 0 0 1.5rem;
  font-family: var(--font-headings);
  font-size: 1.3rem;
  letter-spacing: -0.02em;
}

.page-home .home-trust__milestones h3::before {
  content: "";
  width: 1.5rem;
  height: 3px;
  background: var(--color-accent-neon);
  clip-path: polygon(0 0, 100% 0, calc(100% - 4px) 100%, 0 100%);
}

.page-home .home-trust__milestone-list {
  display: grid;
  gap: 1rem;
}

.page-home .home-trust__milestone-item {
  display: grid;
  grid-template-columns: 4.5rem minmax(0, 1fr);
  gap: 1rem;
  align-items: baseline;
  padding-bottom: 1rem;
}

.page-home .home-trust__milestone-item:not(:last-child) {
  border-bottom: 1px solid rgba(244, 244, 248, 0.1);
}

.page-home .home-trust__year {
  font-family: var(--font-headings);
  font-weight: 900;
  font-size: 1.2rem;
  letter-spacing: -0.02em;
  color: var(--color-accent-warm);
}

.page-home .home-trust__event {
  font-size: 0.9rem;
  line-height: 1.55;
  font-weight: 300;
  color: rgba(244, 244, 248, 0.78);
}

/* ===== 底部探索 ===== */
.page-home .home-next {
  background: var(--color-bg-deep);
  padding: 3rem 0;
  border-top: 1px solid rgba(108, 99, 255, 0.35);
}

.page-home .home-next .container {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 1rem;
}

.page-home .home-next__item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  background: rgba(42, 26, 74, 0.65);
  color: var(--color-text-bright);
  text-decoration: none;
  font-family: var(--font-headings);
  font-weight: 900;
  font-size: 1.1rem;
  clip-path: polygon(0 0, calc(100% - 14px) 0, 100% 14px, 100% 100%, 14px 100%, 0 calc(100% - 14px));
  transition: background 200ms ease, transform 200ms ease;
}

.page-home .home-next__item:hover {
  background: rgba(255, 107, 0, 0.2);
  transform: translateX(6px);
}

.page-home .home-next__item span {
  font-size: 1.3rem;
  color: var(--color-accent-neon);
}

/* ===== 桌面端布局 ===== */
@media (min-width: 960px) {
  .page-home .home-hero .container {
    padding-top: 9rem;
    padding-bottom: 5.5rem;
  }

  .page-home .home-hero__layout {
    grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
    gap: 2.5rem;
    align-items: end;
  }

  .page-home .home-hero__status {
    grid-template-columns: minmax(0, 1fr);
    gap: 0.9rem;
  }

  .page-home .home-hero__status-card {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.25rem;
  }

  .page-home .home-hero__status-card:last-child {
    grid-column: auto;
  }

  .page-home .home-quick__grid {
    grid-template-columns: repeat(12, minmax(0, 1fr));
    align-items: stretch;
  }

  .page-home .home-quick__card--notice {
    grid-column: span 4;
  }

  .page-home .home-quick__card--score {
    grid-column: span 8;
  }

  .page-home .home-quick__card--app,
  .page-home .home-quick__card--member {
    grid-column: span 6;
  }

  .page-home .home-live__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
  }

  .page-home .home-trust__stats {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.5rem;
  }

  .page-home .home-trust__milestone-list {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 0.75rem;
  }

  .page-home .home-trust__milestone-item {
    grid-template-columns: minmax(0, 1fr);
    gap: 0.55rem;
    align-items: start;
    padding-bottom: 0;
    padding-right: 1.25rem;
    border-bottom: 0;
  }

  .page-home .home-trust__milestone-item:not(:last-child) {
    border-right: 1px solid rgba(244, 244, 248, 0.12);
    border-bottom: 0;
  }

  .page-home .home-next .container {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  }
}

/* ===== 动效降级 ===== */
@media (prefers-reduced-motion: reduce) {
  .page-home .home-hero__stream {
    animation: none;
    opacity: 0.4;
  }

  .page-home .home-quick__card,
  .page-home .home-next__item {
    transition: none;
  }

  .page-home .home-quick__card:hover,
  .page-home .home-next__item:hover {
    transform: none;
  }
}
