.page-home {
  --home-gap: 0.85rem;
  --home-card: linear-gradient(158deg, rgba(18, 27, 51, 0.92), rgba(11, 18, 36, 0.7));
}

.page-home .section {
  padding: clamp(2.4rem, 5.5vw, 4.6rem) 0;
}

.page-home img {
  max-width: 100%;
  height: auto;
}

/* ---------- 面包屑 ---------- */
.page-home .breadcrumb {
  margin-bottom: 1.6rem;
}

/* ---------- 首屏分屏 ---------- */
.page-home .hero-split {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 2.2rem;
  align-items: center;
}

.page-home .hero-copy h1 {
  margin: 0.7rem 0 1.05rem;
  font-family: var(--font-heading);
  font-size: clamp(1.9rem, 6.2vw, 3.05rem);
  line-height: 1.26;
  letter-spacing: 0.012em;
  color: var(--silver);
}

.page-home .hero-lede {
  margin: 0;
  max-width: 35rem;
  font-size: 1.02rem;
  line-height: 1.85;
  color: var(--grey);
}

.page-home .hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 1.9rem 0 1.8rem;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.page-home .metric {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding: 1rem 0.85rem;
  border-left: 1px solid var(--line);
}

.page-home .metric:first-child {
  border-left: 0;
  padding-left: 0;
}

.page-home .metric-num {
  font-size: clamp(1.6rem, 5.4vw, 2.1rem);
  line-height: 1.05;
  font-weight: 700;
  color: var(--silver);
}

.page-home .metric-num::after {
  content: "";
  display: block;
  width: 22px;
  height: 2px;
  margin-top: 0.5rem;
  background: linear-gradient(90deg, var(--teal), rgba(47, 212, 198, 0));
}

.page-home .metric-label {
  font-size: 0.84rem;
  line-height: 1.55;
  color: var(--grey);
}

.page-home .hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.page-home .hero-visual {
  position: relative;
  isolation: isolate;
}

.page-home .hero-visual::before {
  content: "";
  position: absolute;
  top: -12%;
  right: -10%;
  width: 56%;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  background: radial-gradient(circle at 50% 50%, rgba(108, 77, 230, 0.42), rgba(47, 212, 198, 0.12) 46%, rgba(5, 9, 20, 0) 72%);
  pointer-events: none;
  z-index: -1;
}

.page-home .hero-figure {
  position: relative;
}

/* ---------- Bento 方案概览 ---------- */
.page-home .bento {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: var(--home-gap);
  margin-top: 2.1rem;
}

.page-home .bento-media {
  position: relative;
  overflow: hidden;
  min-height: 240px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--ink-800);
}

.page-home .bento-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-home .bento-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(200deg, rgba(5, 9, 20, 0.1), rgba(5, 9, 20, 0.72));
  pointer-events: none;
}

.page-home .bento-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 0.7rem;
  padding: 1.2rem 1.3rem 1.25rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--home-card);
  color: inherit;
  text-decoration: none;
  transition: border-color 0.25s ease, transform 0.25s ease, background 0.25s ease;
}

.page-home .bento-card:hover,
.page-home .bento-card:focus-visible {
  border-color: rgba(47, 212, 198, 0.5);
  transform: translateY(-2px);
}

.page-home .bento-index {
  font-size: 0.76rem;
  letter-spacing: 0.14em;
  color: var(--teal);
}

.page-home .bento-title {
  margin: 0;
  font-family: var(--font-heading);
  font-size: 1.16rem;
  font-weight: 600;
  line-height: 1.45;
  color: var(--silver);
}

.page-home .bento-card p {
  margin: 0;
  font-size: 0.93rem;
  line-height: 1.72;
  color: var(--grey);
}

.page-home .bento-more {
  font-size: 0.85rem;
  color: var(--violet-soft);
}

/* ---------- 专利星图 ---------- */
.page-home .patent-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 1.9rem;
  align-items: center;
}

.page-home .patent-lede {
  margin: 0.9rem 0 0;
  font-size: 1rem;
  line-height: 1.85;
  color: var(--grey);
}

.page-home .patent-list {
  list-style: none;
  margin: 1.35rem 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.55rem;
}

.page-home .patent-list li {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.7rem 0.85rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: rgba(18, 27, 51, 0.48);
  font-size: 0.92rem;
  color: var(--silver);
}

.page-home .patent-list li::before {
  content: "";
  flex: none;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 8px rgba(47, 212, 198, 0.85);
}

.page-home .patent-note {
  margin: 1.15rem 0 0;
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--dim);
}

.page-home .patent-map {
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 20% 16%, rgba(108, 77, 230, 0.24), transparent 58%),
    radial-gradient(circle at 84% 78%, rgba(47, 212, 198, 0.14), transparent 58%),
    var(--ink-800);
}

.page-home .patent-map svg {
  display: block;
  width: 100%;
  height: auto;
}

/* ---------- 交付网络 ---------- */
.page-home .network-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 1.6rem;
  margin-top: 2rem;
}

.page-home .net-stat {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.25rem 0.8rem;
  padding: 0.95rem 1rem;
  margin-bottom: 0.6rem;
  border: 1px solid var(--line);
  border-left: 2px solid var(--teal-deep);
  border-radius: var(--radius-sm);
  background: rgba(18, 27, 51, 0.5);
}

.page-home .net-num {
  font-size: 1.85rem;
  line-height: 1;
  font-weight: 700;
  color: var(--teal);
}

.page-home .net-label {
  font-size: 0.98rem;
  color: var(--silver);
}

.page-home .net-desc {
  font-size: 0.84rem;
  color: var(--grey);
  margin-left: auto;
}

.page-home .net-note {
  margin: 1.1rem 0 0;
  font-size: 0.94rem;
  line-height: 1.8;
  color: var(--grey);
}

.page-home .text-link {
  display: inline-block;
  margin-top: 1rem;
  font-size: 0.94rem;
  color: var(--teal);
  text-decoration: none;
  border-bottom: 1px solid rgba(47, 212, 198, 0.35);
  padding-bottom: 0.12rem;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.page-home .text-link:hover,
.page-home .text-link:focus-visible {
  color: var(--violet-soft);
  border-color: rgba(155, 134, 245, 0.6);
}

/* ---------- 评价摘要 ---------- */
.page-home .voices-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 1.8rem;
  margin-top: 2rem;
}

.page-home .figure-caption {
  margin: 0.7rem 0 0;
}

.page-home .voice-group {
  margin-bottom: 0.7rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(18, 27, 51, 0.5);
  overflow: hidden;
}

.page-home .voice-group > summary {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.45rem 0.85rem;
  padding: 0.9rem 1.05rem;
  cursor: pointer;
  list-style: none;
}

.page-home .voice-group > summary::-webkit-details-marker {
  display: none;
}

.page-home .voice-group > summary::after {
  content: "+";
  margin-left: auto;
  font-family: var(--font-mono);
  font-size: 1.05rem;
  color: var(--teal);
}

.page-home .voice-group[open] > summary::after {
  content: "\2212";
}

.page-home .voice-tag {
  font-size: 0.74rem;
  letter-spacing: 0.12em;
  color: var(--teal);
  padding: 0.18rem 0.5rem;
  border: 1px solid rgba(47, 212, 198, 0.35);
  border-radius: 999px;
}

.page-home .voice-scope {
  font-size: 0.84rem;
  color: var(--grey);
}

.page-home .voice-list {
  list-style: none;
  margin: 0;
  padding: 0 1.05rem 1.05rem;
  display: grid;
  gap: 0.55rem;
}

.page-home .voice-list li {
  position: relative;
  padding-left: 0.9rem;
  font-size: 0.92rem;
  line-height: 1.75;
  color: var(--grey);
}

.page-home .voice-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.64em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--violet-soft);
}

/* ---------- 合作入口 ---------- */
.page-home .cta-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 1.5rem;
  align-items: center;
  padding: clamp(1.5rem, 4vw, 2.6rem);
  border-radius: var(--radius);
}

.page-home .cta-copy p {
  margin: 0.8rem 0 0;
  font-size: 0.98rem;
  line-height: 1.8;
  color: var(--grey);
}

.page-home .cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

/* ---------- 断点 ---------- */
@media (min-width: 640px) {
  .page-home .patent-list {
    gap: 0.6rem 0.9rem;
  }
}

@media (min-width: 800px) {
  .page-home .cta-panel {
    grid-template-columns: minmax(0, 1.6fr) auto;
    gap: 2.4rem;
  }
}

@media (min-width: 900px) {
  .page-home .hero-split {
    grid-template-columns: minmax(0, 1.06fr) minmax(0, 0.94fr);
    gap: clamp(2rem, 4.5vw, 4.2rem);
  }

  .page-home .hero-visual {
    width: 100%;
    max-width: 460px;
    justify-self: end;
  }

  .page-home .bento {
    grid-template-columns: repeat(12, minmax(0, 1fr));
    grid-auto-rows: minmax(172px, auto);
    gap: 0.9rem;
  }

  .page-home .bento-media {
    grid-area: 1 / 1 / 3 / 6;
    min-height: 0;
  }

  .page-home .bento-brand {
    grid-area: 1 / 6 / 2 / 13;
  }

  .page-home .bento-data {
    grid-area: 2 / 6 / 3 / 10;
  }

  .page-home .bento-flow {
    grid-area: 2 / 10 / 3 / 13;
  }

  .page-home .bento-delivery {
    grid-area: 3 / 1 / 4 / 7;
  }

  .page-home .bento-support {
    grid-area: 3 / 7 / 4 / 13;
  }

  .page-home .patent-grid {
    grid-template-columns: minmax(0, 0.96fr) minmax(0, 1.04fr);
    gap: clamp(2rem, 5vw, 4.2rem);
  }

  .page-home .network-grid {
    grid-template-columns: minmax(0, 1.42fr) minmax(0, 1fr);
    gap: 2.2rem;
    align-items: start;
  }

  .page-home .voices-grid {
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
    gap: 2.2rem;
    align-items: start;
  }
}
<<<END>>>
