.page-home {
  background: var(--primary-deep);
  color: var(--text-light);
  overflow-x: hidden;
}

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

/* ===== 通用展签 ===== */
.page-home .home-head {
  max-width: 640px;
  margin-bottom: clamp(24px, 4vw, 44px);
}

.page-home .home-kicker {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 16px;
  padding: 7px 16px;
  border: 1px solid rgba(212, 175, 55, 0.6);
  border-radius: 999px;
  background: rgba(7, 19, 46, 0.55);
  color: var(--gold-accent);
  font-family: var(--font-headline);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.page-home .kicker-line {
  width: 24px;
  height: 2px;
  border-radius: 2px;
  background: var(--accent-orange);
}

.page-home .home-sub {
  margin: 12px 0 0;
  color: var(--text-muted);
  font-size: 0.9375rem;
  line-height: 1.7;
}

.page-home h2 {
  margin: 0;
  color: var(--text-light);
  font-family: var(--font-headline);
  font-size: clamp(1.8rem, 3.6vw, 2.8rem);
  line-height: 1.2;
}

/* ===== 01 主题声明 ===== */
.page-home .statement-section {
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: clamp(560px, 92vh, 860px);
  padding: clamp(48px, 7vw, 96px) clamp(20px, 5vw, 72px);
  isolation: isolate;
}

.page-home .statement-media {
  position: absolute;
  inset: 0;
  z-index: -2;
  margin: 0;
}

.page-home .statement-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-home .statement-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(10, 31, 68, 0.96) 0%, rgba(10, 31, 68, 0.76) 52%, rgba(7, 19, 46, 0.35) 100%),
    linear-gradient(180deg, rgba(10, 31, 68, 0.25) 0%, rgba(10, 31, 68, 0.88) 100%);
}

.page-home .statement-section::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image:
    radial-gradient(circle at 76% 22%, rgba(255, 107, 53, 0.5), transparent 16%),
    radial-gradient(circle at 86% 64%, rgba(212, 175, 55, 0.28), transparent 12%),
    radial-gradient(circle at 24% 38%, rgba(94, 138, 196, 0.4), transparent 14%),
    radial-gradient(circle at 58% 72%, rgba(255, 107, 53, 0.16), transparent 8%);
  animation: homeLightDrift 18s ease-in-out infinite alternate;
}

@keyframes homeLightDrift {
  0% {
    background-position: 0 0, 0 0, 0 0, 0 0;
    opacity: 0.6;
  }
  100% {
    background-position: 60px -90px, -40px 50px, 30px 30px, -20px 60px;
    opacity: 1;
  }
}

.page-home .statement-inner {
  position: relative;
  z-index: 2;
  max-width: 680px;
  padding-bottom: 12px;
}

.page-home .statement-section h1 {
  margin: 20px 0 12px;
  color: #ffffff;
  font-family: var(--font-headline);
  font-size: clamp(2.6rem, 6vw, 4.8rem);
  line-height: 1.05;
}

.page-home .statement-lead {
  margin: 0 0 20px;
  color: var(--accent-orange);
  font-family: var(--font-headline);
  font-size: clamp(1.25rem, 2.4vw, 1.8rem);
  line-height: 1.4;
}

.page-home .statement-copy {
  margin: 0;
  max-width: 580px;
  color: var(--text-light);
  font-size: 1rem;
  line-height: 1.9;
}

.page-home .statement-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.page-home .statement-scroll {
  position: absolute;
  right: 1.6rem;
  bottom: 1.6rem;
  z-index: 2;
  margin: 0;
  color: var(--text-muted);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  writing-mode: vertical-rl;
}

@media (max-width: 640px) {
  .page-home .statement-scroll {
    display: none;
  }
}

/* ===== 02 内容目录 ===== */
.page-home .index-section {
  padding: clamp(60px, 8vw, 110px) 0;
  background: var(--bg-mid);
  border-top: 1px solid rgba(212, 175, 55, 0.25);
}

.page-home .index-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}

@media (min-width: 560px) {
  .page-home .index-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 980px) {
  .page-home .index-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .page-home .index-item:nth-child(3n + 2) {
    margin-top: 28px;
  }
}

.page-home .index-card {
  display: flex;
  flex-direction: column;
  min-height: 150px;
  padding: 22px;
  background: linear-gradient(145deg, rgba(14, 38, 82, 0.95), rgba(10, 31, 68, 0.9));
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-card);
  color: inherit;
  text-decoration: none;
  transition: transform 0.35s var(--ease), border-color 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

.page-home .index-card:hover {
  transform: translateY(-6px);
  border-color: var(--accent-orange);
  box-shadow: var(--shadow-lift);
}

.page-home .index-num {
  display: block;
  margin-bottom: 6px;
  color: var(--gold-accent);
  font-family: var(--font-headline);
  font-size: 0.85rem;
  letter-spacing: 0.14em;
}

.page-home .index-cat {
  display: block;
  margin-top: auto;
  color: var(--text-light);
  font-family: var(--font-headline);
  font-size: 1.28rem;
}

.page-home .index-desc {
  display: block;
  margin-top: 6px;
  color: var(--text-muted);
  font-size: 0.84rem;
  line-height: 1.6;
}

/* ===== 03 最新动态 ===== */
.page-home .updates-section {
  position: relative;
  padding: clamp(60px, 8vw, 110px) 0;
  background:
    radial-gradient(circle at 12% 18%, rgba(255, 107, 53, 0.1), transparent 24%),
    linear-gradient(160deg, #0a1f44 0%, #07132e 62%, #0b2145 100%);
}

.page-home .updates-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 20%;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent-orange), transparent);
}

.page-home .updates-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(24px, 4vw, 44px);
  margin-top: clamp(24px, 4vw, 48px);
}

@media (min-width: 880px) {
  .page-home .updates-layout {
    grid-template-columns: 3fr 2fr;
    align-items: end;
  }
}

.page-home .updates-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

@media (min-width: 640px) {
  .page-home .updates-list {
    grid-template-columns: 1fr 1fr;
  }
}

.page-home .update-item {
  padding: 22px 24px;
  background: rgba(13, 34, 73, 0.82);
  border: 1px solid var(--border-dark);
  border-left: 4px solid var(--accent-orange);
  border-radius: var(--radius-card);
  transition: transform 0.3s var(--ease), border-color 0.3s var(--ease), background 0.3s;
}

.page-home .update-item:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 107, 53, 0.7);
  background: rgba(14, 38, 82, 1);
}

.page-home .update-tag {
  display: inline-block;
  margin-bottom: 12px;
  padding: 4px 10px;
  border: 1px solid rgba(212, 175, 55, 0.4);
  border-radius: 999px;
  color: var(--gold-accent);
  font-family: var(--font-headline);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.page-home .update-item h3 {
  margin: 0 0 8px;
  color: var(--text-light);
  font-family: var(--font-headline);
  font-size: 1.15rem;
  line-height: 1.4;
}

.page-home .update-item p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.9375rem;
  line-height: 1.7;
}

.page-home .updates-media {
  position: relative;
  margin: 0;
}

.page-home .updates-media img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-soft);
}

.page-home .updates-media figcaption {
  margin-top: 12px;
  color: var(--text-muted);
  font-size: 0.82rem;
  text-align: right;
}

/* ===== 04 核心入口 ===== */
.page-home .core-section {
  padding: clamp(60px, 8vw, 110px) 0;
  background: var(--bg-light);
  color: var(--primary-deep);
}

.page-home .core-section h2 {
  color: var(--primary-deep);
}

.page-home .core-section .home-sub {
  color: #5a6b82;
}

.page-home .core-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  margin-top: clamp(24px, 4vw, 48px);
}

@media (min-width: 980px) {
  .page-home .core-layout {
    grid-template-columns: 1.6fr 1fr;
    align-items: center;
  }
}

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

@media (min-width: 720px) {
  .page-home .core-grid {
    grid-template-columns: 1fr 1fr;
  }

  .page-home .core-card:nth-child(2),
  .page-home .core-card:nth-child(4) {
    transform: translateY(28px);
  }
}

.page-home .core-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  padding: 26px 26px 40px;
  background: var(--surface-white);
  border: 1px solid #dfe7f1;
  border-radius: var(--radius-card);
  box-shadow: 0 10px 30px rgba(7, 19, 46, 0.08);
  color: var(--primary-deep);
  text-decoration: none;
  transition: box-shadow 0.35s var(--ease), border-color 0.35s var(--ease);
}

.page-home .core-card:hover {
  border-color: var(--accent-orange);
  box-shadow: 0 18px 40px rgba(10, 31, 68, 0.18);
}

.page-home .core-icon {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: linear-gradient(145deg, #0a1f44, #123263);
  color: var(--accent-orange);
  transition: transform 0.35s var(--ease);
}

.page-home .core-card:hover .core-icon {
  transform: scale(1.1);
}

.page-home .core-icon svg {
  width: 26px;
  height: 26px;
}

.page-home .core-cat {
  margin-top: 6px;
  color: #6b7f99;
  font-family: var(--font-headline);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.page-home .core-card h3 {
  margin: 0;
  color: var(--primary-deep);
  font-family: var(--font-headline);
  font-size: 1.3rem;
  line-height: 1.4;
}

.page-home .core-card p {
  margin: 0;
  color: #5a6b82;
  font-size: 0.9rem;
  line-height: 1.65;
}

.page-home .core-arrow {
  position: absolute;
  right: 18px;
  bottom: 14px;
  color: var(--accent-orange);
  font-size: 1.4rem;
  opacity: 0.7;
  transition: opacity 0.3s, transform 0.3s;
}

.page-home .core-card:hover .core-arrow {
  opacity: 1;
  transform: translateX(4px);
}

.page-home .core-media {
  position: relative;
  margin: 0;
  padding: 14px;
  background: linear-gradient(145deg, #0a1f44, #07132e);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-lift);
}

.page-home .core-media::before {
  content: "";
  position: absolute;
  top: -10px;
  left: -10px;
  width: 46px;
  height: 46px;
  border: 2px solid var(--gold-accent);
  border-radius: 50%;
  opacity: 0.8;
}

.page-home .core-media img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: calc(var(--radius-card) - 6px);
}

.page-home .core-media figcaption {
  padding: 12px 6px 2px;
  color: var(--text-muted);
  font-size: 0.82rem;
  text-align: right;
}

/* ===== 05 信赖背书 ===== */
.page-home .trust-section {
  padding: clamp(60px, 8vw, 100px) 0;
  background: var(--bg-mid);
  border-top: 1px solid rgba(212, 175, 55, 0.25);
}

.page-home .trust-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  margin-top: clamp(24px, 4vw, 48px);
}

@media (min-width: 960px) {
  .page-home .trust-layout {
    grid-template-columns: 1.3fr 1fr 1fr;
    align-items: start;
  }
}

.page-home .trust-metrics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.page-home .metric {
  padding: 18px 16px;
  background: rgba(14, 38, 82, 0.85);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-card);
}

.page-home .metric-num {
  display: block;
  color: var(--accent-orange);
  font-family: var(--font-headline);
  font-size: clamp(1.9rem, 3vw, 2.5rem);
  line-height: 1.1;
}

.page-home .metric-label {
  display: block;
  margin-top: 6px;
  color: var(--text-muted);
  font-size: 0.82rem;
  line-height: 1.5;
}

.page-home .trust-badges {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 24px;
  background: linear-gradient(150deg, #0e2a58, #0a1f44);
  border: 1px solid rgba(212, 175, 55, 0.45);
  border-radius: var(--radius-card);
}

.page-home .trust-badges p {
  margin: 0;
  color: var(--text-light);
  font-size: 0.92rem;
  line-height: 1.6;
}

.page-home .trust-badges strong {
  color: var(--text-light);
}

.page-home .trust-badges .trust-icp {
  color: var(--gold-accent);
  font-family: var(--font-headline);
  font-size: 1rem;
}

.page-home .trust-media {
  position: relative;
  margin: 0;
}

.page-home .trust-media img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-soft);
}

.page-home .trust-media figcaption {
  margin-top: 10px;
  color: var(--text-muted);
  font-size: 0.82rem;
}
