.page-home {
  --page-gap: clamp(3rem, 7vw, 5.5rem);
  --page-card-radius: 12px;
  --page-gold-soft: rgba(212, 175, 55, 0.16);
  background: var(--light);
  color: var(--ink);
  font-family: var(--font);
}
.page-home .home-features,
.page-home .home-services,
.page-home .home-stats,
.page-home .home-compat,
.page-home .home-cta {
  padding-top: var(--page-gap);
  padding-bottom: var(--page-gap);
}
/* ==== 首屏 Hero ==== */
.page-home .home-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: var(--space-blue);
  color: #fff;
}
.page-home .home-hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}
.page-home .home-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(115deg, rgba(11,29,58,.94) 0%, rgba(16,42,76,.82) 52%, rgba(11,29,58,.58) 100%);
}
.page-home .home-hero__inner,
.page-home .home-hero__index {
  position: relative;
  z-index: 2;
}
.page-home .home-hero__inner {
  display: grid;
  gap: 2rem;
  padding-top: clamp(2.75rem, 8vw, 5.5rem);
  padding-bottom: 2.5rem;
}
.page-home .home-hero__eyebrow {
  color: var(--gold-light);
}
.page-home .home-hero__title {
  font-size: clamp(2.125rem, 6vw, 4rem);
  font-weight: 800;
  line-height: 1.18;
  letter-spacing: -0.02em;
  margin: 0.75rem 0 1.125rem;
  color: #fff;
}
.page-home .home-hero__lead {
  font-size: clamp(0.9375rem, 2vw, 1.0625rem);
  line-height: 1.85;
  color: rgba(244, 247, 250, .88);
  max-width: 46em;
}
.page-home .home-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.875rem;
  margin-top: 1.75rem;
}
.page-home .hero-dashboard {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 14px;
  padding: 1.25rem;
  backdrop-filter: blur(6px);
}
.page-home .hero-dashboard__status {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding-bottom: 0.875rem;
  border-bottom: 1px solid rgba(255,255,255,.16);
  font-size: 0.8125rem;
  color: rgba(255,255,255,.75);
}
.page-home .hero-dashboard__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold-light);
  box-shadow: 0 0 0 4px var(--page-gold-soft);
}
.page-home .hero-dashboard__running {
  margin-left: auto;
  color: var(--gold-light);
  font-weight: 600;
}
.page-home .hero-dashboard__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}
.page-home .hero-dashboard__cell {
  background: rgba(16, 42, 76, .42);
  border-radius: 10px;
  padding: 0.875rem 0.75rem;
  clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 0 100%);
}
.page-home .hero-dashboard__value {
  display: block;
  font-size: 1.375rem;
  font-weight: 800;
  color: var(--gold-light);
  line-height: 1.2;
}
.page-home .hero-dashboard__label {
  display: block;
  margin-top: 0.25rem;
  font-size: 0.75rem;
  color: rgba(255,255,255,.7);
}
.page-home .home-hero__index {
  border-top: 1px solid rgba(212, 175, 55, .4);
}
.page-home .home-hero__cover {
  display: flex;
  flex-wrap: wrap;
  gap: 0.375rem 1.5rem;
  list-style: none;
  margin: 0;
  padding: 1rem 0;
}
.page-home .home-hero__cover a {
  color: rgba(255,255,255,.82);
  text-decoration: none;
  font-size: 0.875rem;
  transition: color .3s ease;
}
.page-home .home-hero__cover a:hover {
  color: var(--gold-light);
}
/* ==== 新版特性 ==== */
.page-home .home-features {
  background: var(--light);
}
.page-home .home-features__head,
.page-home .home-services__head,
.page-home .home-stats__head,
.page-home .home-compat__head {
  margin-bottom: 2rem;
}
.page-home .home-features__head::after,
.page-home .home-services__head::after,
.page-home .home-stats__head::after,
.page-home .home-compat__head::after {
  content: "";
  display: block;
  width: 64px;
  height: 3px;
  margin-top: 0.875rem;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
}
.page-home .home-features__intro,
.page-home .home-services__intro,
.page-home .home-stats__intro,
.page-home .home-compat__intro {
  margin-top: 0.75rem;
  color: var(--muted);
  max-width: 44em;
}
.page-home .home-features__grid {
  --gap: 1.25rem;
  display: grid;
  gap: var(--gap);
}
.page-home .home-features__card {
  position: relative;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--page-card-radius);
  padding: 1.5rem 1.375rem;
  transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
}
.page-home .home-features__card::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 36px;
  height: 36px;
  background: linear-gradient(225deg, var(--gold) 0%, var(--gold) 50%, transparent 51%);
  z-index: 1;
}
.page-home .home-features__card:hover {
  transform: translateY(-6px) rotate(-0.25deg);
  box-shadow: 0 18px 36px rgba(11, 29, 58, .12);
  border-color: rgba(212, 175, 55, .55);
}
.page-home .home-features__card .card__title {
  margin-top: 1rem;
  font-size: 1.25rem;
}
/* ==== 核心服务 ==== */
.page-home .home-services {
  background: #fff;
}
.page-home .home-services__layout {
  display: grid;
  gap: 1.75rem;
}
.page-home .home-services__tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.625rem;
}
.page-home .home-services__tab {
  font-family: var(--font);
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1.2;
  white-space: nowrap;
  padding: 0.6875rem 0.9375rem;
  background: var(--light);
  border: 1px solid var(--border);
  border-radius: 999px;
  color: var(--muted);
  cursor: pointer;
  transition: background .3s ease, color .3s ease, border-color .3s ease;
}
.page-home .home-services__tab:hover {
  border-color: var(--gold);
  color: var(--space-blue);
}
.page-home .home-services__tab[aria-selected="true"] {
  background: var(--space-blue);
  border-color: var(--space-blue);
  color: #fff;
}
.page-home .home-services__panels {
  margin-top: 1.25rem;
  display: grid;
  gap: 1rem;
}
.page-home .home-services__panel {
  background: var(--light);
  border-left: 3px solid var(--gold);
  border-radius: 8px;
  padding: 1.5rem;
}
.page-home .home-services__panel h3 {
  margin: 0 0 0.5rem;
  font-size: 1.125rem;
  color: var(--space-blue);
}
.page-home .home-services__panel p {
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
}
.page-home .home-services__panel .link-arrow {
  display: inline-block;
  margin-top: 1rem;
}
.page-home .home-services__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  list-style: none;
  margin: 1rem 0 0;
  padding: 0;
}
.page-home .home-services__tags li {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 0.375rem 0.625rem;
  font-size: 0.8125rem;
  color: var(--space-blue);
}
.page-home .home-services__visual img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 14px;
  box-shadow: 0 20px 40px rgba(11, 29, 58, .16);
  aspect-ratio: 4 / 3;
}
.page-home .home-services__caption {
  margin: 0.75rem 0 0;
  font-size: 0.8125rem;
  color: var(--muted);
  text-align: center;
}
/* ==== 平台数据一览 ==== */
.page-home .home-stats {
  background: linear-gradient(140deg, var(--space-blue) 0%, #0e2444 60%, #123054 100%);
  color: #fff;
}
.page-home .home-stats__head p:not(.eyebrow) {
  color: rgba(244, 247, 250, .75);
}
.page-home .home-stats__grid {
  --gap: 1rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--gap);
  margin-bottom: 2.5rem;
}
.page-home .home-stats__stat {
  position: relative;
  overflow: hidden;
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(212, 175, 55, .32);
  border-radius: 12px;
  padding: 1.25rem 1rem;
}
.page-home .home-stats__stat::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 24px;
  height: 24px;
  background: linear-gradient(225deg, var(--gold) 50%, transparent 51%);
}
.page-home .home-stats__stat .stat__value {
  display: block;
  font-size: clamp(1.875rem, 5vw, 2.75rem);
  font-weight: 800;
  color: var(--gold-light);
  line-height: 1.15;
}
.page-home .home-stats__stat .stat__label {
  display: block;
  margin-top: 0.375rem;
  color: rgba(244, 247, 250, .75);
  font-size: 0.875rem;
}
.page-home .home-stats__bottom {
  display: grid;
  gap: 1.5rem;
  align-items: center;
}
.page-home .home-stats__chart img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 14px;
  border: 1px solid rgba(212, 175, 55, .4);
  aspect-ratio: 4 / 3;
}
.page-home .home-stats__desc h3 {
  margin: 0 0 0.75rem;
  font-size: 1.375rem;
  color: #fff;
}
.page-home .home-stats__desc p {
  color: rgba(244, 247, 250, .8);
  line-height: 1.85;
}
.page-home .home-stats__list {
  display: grid;
  gap: 0.625rem;
  list-style: none;
  margin: 1.25rem 0 0;
  padding: 0;
}
.page-home .home-stats__list li {
  position: relative;
  padding-left: 1.5rem;
  color: rgba(244, 247, 250, .85);
}
.page-home .home-stats__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45rem;
  width: 7px;
  height: 7px;
  background: var(--gold);
  transform: rotate(45deg);
}
/* ==== 适配与兼容 ==== */
.page-home .home-compat {
  background: var(--light);
}
.page-home .home-compat__layout {
  display: grid;
  gap: 1.75rem;
  align-items: center;
}
.page-home .home-compat__list {
  display: grid;
  gap: 0.875rem;
  list-style: none;
  margin: 0 0 1.25rem;
  padding: 0;
}
.page-home .home-compat__list li {
  position: relative;
  padding: 0.875rem 1rem 0.875rem 2.5rem;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 10px;
  font-weight: 600;
  color: var(--space-blue);
}
.page-home .home-compat__list li::before {
  content: "✓";
  position: absolute;
  left: 0.875rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gold);
  font-weight: 800;
}
.page-home .home-compat__desc {
  color: var(--muted);
  margin-bottom: 1.25rem;
}
.page-home .home-compat__visual img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 14px;
  box-shadow: 0 22px 44px rgba(11, 29, 58, .14);
  aspect-ratio: 3 / 2;
}
/* ==== 立即体验 ==== */
.page-home .home-cta {
  background: linear-gradient(140deg, #0c2242 0%, var(--space-blue) 55%, #0e2648 100%);
  color: #fff;
}
.page-home .home-cta__panel {
  position: relative;
  background: rgba(16, 42, 76, .5);
  border: 1px solid rgba(212, 175, 55, .35);
  border-radius: 18px;
  padding: clamp(1.75rem, 5vw, 3rem);
  text-align: center;
  overflow: hidden;
}
.page-home .home-cta__panel::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light), var(--gold));
}
.page-home .home-cta__eyebrow {
  color: var(--gold-light);
}
.page-home .home-cta__panel h2 {
  margin: 0.5rem auto 0.875rem;
  font-size: clamp(1.625rem, 4vw, 2.5rem);
  line-height: 1.25;
  color: #fff;
}
.page-home .home-cta__lead {
  color: rgba(244, 247, 250, .82);
  max-width: 38em;
  margin: 0 auto 1.5rem;
}
.page-home .home-cta__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.875rem;
}
.page-home .home-cta__link {
  color: var(--gold-light);
}
.page-home .home-cta__footnote {
  margin: 1.25rem 0 0;
  font-size: 0.8125rem;
  color: rgba(244, 247, 250, .55);
}
/* ==== 平板端 ==== */
@media (min-width: 768px) {
  .page-home .home-hero__inner {
    grid-template-columns: minmax(0, 1.2fr) minmax(0, .8fr);
    align-items: center;
  }
  .page-home .home-stats__grid {
    grid-template-columns: repeat(4, 1fr);
  }
  .page-home .home-stats__bottom,
  .page-home .home-compat__layout {
    grid-template-columns: 1fr 1fr;
  }
  .page-home .home-features__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
/* ==== 桌面端 ==== */
@media (min-width: 1024px) {
  .page-home .home-hero__inner {
    padding-top: clamp(4rem, 9vw, 7rem);
    padding-bottom: 3.5rem;
  }
  .page-home .home-features__grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .page-home .home-services__layout {
    grid-template-columns: minmax(0, 1.35fr) minmax(0, 1fr);
    align-items: start;
  }
  .page-home .home-services__visual {
    position: sticky;
    top: calc(var(--header-height) + 24px);
  }
  .page-home .home-cta__actions {
    gap: 1rem;
  }
}
/* ==== 动效降级 ==== */
@media (prefers-reduced-motion: reduce) {
  .page-home *,
  .page-home *::before,
  .page-home *::after {
    animation: none !important;
    transition: none !important;
  }
}
