/* ===== 首页专属样式 ===== */
.page-home {
  --home-radius-xl: 40px;
  --home-accent-glow: rgba(255, 127, 50, 0.16);
  --home-deep-navy: #0d2136;
  --home-soft-line: #e2ebf2;
}

/* ===== 首屏：分屏冲刺入口 ===== */
.page-home .home-hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(150deg, var(--home-deep-navy) 0%, var(--primary) 62%, #1e5f82 100%);
  color: var(--white);
  padding: 118px 0 56px;
}
.page-home .home-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 56px 56px;
  pointer-events: none;
}
.page-home .home-hero::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 6px;
  background: linear-gradient(90deg, var(--accent), var(--primary), var(--data-blue));
  z-index: 2;
}
.page-home .hero-angle {
  position: absolute;
  top: 0;
  right: -12%;
  width: 64%;
  height: 120%;
  background: var(--dark);
  opacity: 0.35;
  transform: skewX(-16deg);
  pointer-events: none;
}
.page-home .hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 36px;
}

.page-home .hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  padding: 8px 18px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.1em;
}
.page-home .hero-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 5px var(--home-accent-glow);
}
.page-home .hero-heading {
  margin: 24px 0 0;
  font-size: clamp(2.5rem, 7vw, 4.6rem);
  font-weight: 900;
  line-height: 1.04;
  letter-spacing: -0.03em;
  color: var(--white);
}
.page-home .hero-heading strong {
  display: block;
  color: var(--accent);
  font-weight: 900;
}
.page-home .hero-summary {
  margin-top: 20px;
  max-width: 560px;
  font-size: 15px;
  line-height: 1.8;
  color: rgba(248, 249, 250, 0.86);
}
.page-home .hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}
.page-home .hero-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: var(--radius-pill);
  font-weight: 800;
  font-size: 15px;
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.page-home .hero-cta-primary {
  background: var(--accent);
  color: var(--white);
  box-shadow: 0 10px 28px rgba(255, 127, 50, 0.35);
}
.page-home .hero-cta-secondary {
  border: 1px solid rgba(255, 255, 255, 0.32);
  color: var(--white);
}
.page-home .hero-cta:hover {
  transform: translateY(-2px);
}

.page-home .hero-picture {
  position: relative;
  margin-top: 32px;
}
.page-home .picture-frame {
  border-radius: var(--home-radius-xl);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.28);
}
.page-home .hero-photo {
  width: 100%;
  height: 380px;
  object-fit: cover;
  object-position: center 20%;
  display: block;
}
.page-home .picture-badge {
  position: absolute;
  background: var(--white);
  color: var(--ink);
  font-weight: 700;
  font-size: 13px;
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-float);
  white-space: nowrap;
}
.page-home .picture-badge-a {
  top: 16px;
  left: 16px;
}
.page-home .picture-badge-b {
  bottom: 16px;
  right: 16px;
  background: var(--accent);
  color: var(--white);
}

.page-home .hero-entries {
  display: grid;
  gap: 14px;
}
.page-home .hero-entry {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 20px 22px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-md);
  color: var(--white);
  text-decoration: none;
  transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}
.page-home .hero-entry:hover {
  transform: translateX(6px);
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--accent);
}
.page-home .entry-meta {
  font-size: 12px;
  color: var(--sky-blue);
  letter-spacing: 0.04em;
  font-weight: 600;
}
.page-home .entry-title {
  font-size: 1.15rem;
  font-weight: 800;
}
.page-home .entry-desc {
  font-size: 13px;
  color: rgba(248, 249, 250, 0.7);
}
.page-home .entry-cta {
  color: var(--accent);
  font-weight: 800;
  font-size: 13px;
  margin-top: 6px;
}

/* ===== 主页导览：新路径 ===== */
.page-home .home-guide {
  background: var(--mint);
  padding: 64px 0;
}
.page-home .guide-card {
  position: relative;
  overflow: hidden;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  padding: 32px 24px;
}
.page-home .guide-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 6px;
  background: linear-gradient(90deg, var(--accent), var(--primary), var(--data-blue));
}
.page-home .guide-head h2 {
  font-size: 1.8rem;
  margin: 10px 0 0;
}
.page-home .guide-summary {
  margin-top: 12px;
  color: var(--ink);
  opacity: 0.75;
  font-size: 0.95rem;
  max-width: 640px;
}
.page-home .guide-steps {
  margin-top: 36px;
  display: grid;
  gap: 12px;
}
.page-home .guide-step {
  position: relative;
  padding-left: 22px;
  border-left: 3px solid var(--accent);
}
.page-home .step-index {
  display: inline-block;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  background: var(--mint);
  color: var(--primary);
  font-family: var(--font-number);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
}
.page-home .guide-step h3 {
  font-size: 1.1rem;
  margin: 10px 0 6px;
}
.page-home .guide-step p {
  font-size: 0.9rem;
  color: var(--ink);
  opacity: 0.75;
  margin: 0;
}
.page-home .step-line {
  width: 3px;
  height: 20px;
  margin-left: 0;
  background: linear-gradient(180deg, var(--accent), var(--sky-blue));
}

/* ===== 功能入口：交错布局 ===== */
.page-home .home-features {
  background: var(--bg);
  padding: 64px 0;
}
.page-home .features-head {
  margin-bottom: 28px;
}
.page-home .features-head h2 {
  font-size: 1.8rem;
  margin: 10px 0 0;
}
.page-home .features-sub {
  margin: 10px 0 0;
  color: var(--ink);
  opacity: 0.7;
  font-size: 0.95rem;
  max-width: 680px;
}
.page-home .features-mosaic {
  display: grid;
  gap: 20px;
}
.page-home .feature-tile {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  border: 1px solid var(--home-soft-line);
  box-shadow: var(--shadow-soft);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.page-home .feature-tile:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-float);
}
.page-home .tile-tag {
  align-self: flex-start;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: var(--accent);
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  background: var(--home-accent-glow);
}
.page-home .feature-tile h3 {
  font-size: 1.3rem;
  margin: 16px 0 10px;
}
.page-home .feature-tile p {
  font-size: 0.92rem;
  line-height: 1.7;
  color: var(--ink);
  opacity: 0.82;
  margin: 0;
}
.page-home .tile-points {
  list-style: none;
  padding: 0;
  margin: 18px 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
}
.page-home .tile-points li {
  position: relative;
  font-size: 13px;
  color: var(--primary);
  font-weight: 700;
  padding-left: 18px;
}
.page-home .tile-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
}
.page-home .tile-thumb {
  margin-top: 18px;
  border-radius: var(--radius-sm);
  overflow: hidden;
}
.page-home .tile-thumb img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}
.page-home .tile-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: auto;
  padding: 10px 20px;
  border-radius: var(--radius-pill);
  background: var(--mint);
  color: var(--primary);
  font-weight: 800;
  font-size: 13px;
  text-decoration: none;
  transition: background 0.25s ease, color 0.25s ease;
}
.page-home .tile-link:hover {
  background: var(--accent);
  color: var(--white);
}

/* ===== 即时动态：转会费用实时刷新 ===== */
.page-home .home-live {
  background: var(--dark);
  color: var(--white);
  padding: 64px 0;
}
.page-home .live-layout {
  display: grid;
  gap: 36px;
}
.page-home .live-side h2 {
  color: var(--white);
  font-size: 2rem;
  margin: 10px 0 0;
}
.page-home .live-intro {
  color: rgba(248, 249, 250, 0.75);
  margin-top: 14px;
  font-size: 0.95rem;
  max-width: 420px;
}
.page-home .live-metrics {
  display: flex;
  gap: 16px;
  margin-top: 28px;
  flex-wrap: wrap;
}
.page-home .live-metric {
  background: rgba(255, 255, 255, 0.07);
  border-radius: var(--radius-md);
  padding: 18px 20px;
  min-width: 110px;
  border-left: 3px solid var(--accent);
}
.page-home .live-metric-num {
  display: block;
  font-family: var(--font-number);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
}
.page-home .live-metric-num small {
  font-size: 0.9rem;
}
.page-home .live-metric-label {
  display: block;
  font-size: 12px;
  color: var(--sky-blue);
  letter-spacing: 0.08em;
  margin-top: 8px;
}
.page-home .live-feed {
  display: grid;
  gap: 16px;
}
.page-home .live-item {
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-md);
  padding: 22px;
  border-left: 4px solid var(--accent);
}
.page-home .live-item-head {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: space-between;
}
.page-home .live-timestamp {
  font-family: var(--font-number);
  font-size: 12px;
  color: var(--sky-blue);
}
.page-home .live-item h3 {
  margin: 14px 0 8px;
  font-size: 1.05rem;
  color: var(--white);
}
.page-home .live-item p {
  font-size: 0.9rem;
  line-height: 1.7;
  color: rgba(248, 249, 250, 0.72);
  margin: 0;
}

/* ===== 系统公告 ===== */
.page-home .home-notice {
  background: var(--bg);
  padding: 64px 0;
}
.page-home .notice-layout {
  display: grid;
  gap: 28px;
}
.page-home .notice-copy h2 {
  font-size: 1.8rem;
  margin: 10px 0 0;
}
.page-home .notice-summary {
  margin-top: 12px;
  color: var(--ink);
  opacity: 0.7;
  font-size: 0.95rem;
}
.page-home .notice-list {
  list-style: none;
  padding: 0;
  margin: 28px 0 0;
  display: grid;
  gap: 18px;
}
.page-home .notice-list li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.page-home .notice-icon {
  color: var(--accent);
  font-size: 10px;
  margin-top: 6px;
}
.page-home .notice-list strong {
  display: block;
  font-size: 1rem;
}
.page-home .notice-list p {
  margin: 4px 0 0;
  font-size: 0.88rem;
  color: var(--ink);
  opacity: 0.72;
}
.page-home .notice-media {
  display: grid;
  align-content: start;
  gap: 12px;
}
.page-home .notice-img-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}
.page-home .notice-img-frame img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
}
.page-home .notice-caption {
  text-align: center;
  font-size: 13px;
  color: var(--sky-blue);
}

/* ===== 数据速览 ===== */
.page-home .home-stats {
  background: linear-gradient(180deg, var(--bg), var(--mint));
  padding: 64px 0;
}
.page-home .stats-layout {
  display: grid;
  gap: 30px;
  align-items: center;
}
.page-home .stats-media {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-float);
}
.page-home .stats-media img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
}
.page-home .stats-media-card {
  position: absolute;
  left: 16px;
  bottom: 16px;
  background: var(--white);
  border-radius: var(--radius-pill);
  padding: 10px 18px;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-float);
}
.page-home .stat-mini-num {
  font-family: var(--font-number);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent);
}
.page-home .stat-mini-label {
  font-size: 11px;
  color: var(--ink);
  opacity: 0.7;
}
.page-home .stats-content h2 {
  font-size: 1.8rem;
  margin: 10px 0 0;
}
.page-home .stats-content p {
  margin-top: 14px;
  color: var(--ink);
  opacity: 0.78;
  font-size: 0.95rem;
  line-height: 1.8;
}
.page-home .stats-trust {
  display: flex;
  gap: 10px;
  margin-top: 18px;
  flex-wrap: wrap;
}
.page-home .stats-board {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 24px;
}
.page-home .stat-cell {
  background: var(--white);
  border-radius: var(--radius-sm);
  padding: 18px 16px;
  box-shadow: var(--shadow-soft);
  border-bottom: 3px solid var(--accent);
}
.page-home .stat-num {
  display: block;
  font-family: var(--font-number);
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1.1;
}
.page-home .stat-label {
  display: block;
  font-size: 12px;
  color: var(--ink);
  opacity: 0.65;
  margin-top: 6px;
}

/* ===== 底部引导 ===== */
.page-home .home-engage {
  background: var(--primary);
  padding: 56px 0 72px;
}
.page-home .engage-layout {
  display: grid;
  gap: 18px;
}
.page-home .engage-card {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 8px;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 30px 28px;
  text-decoration: none;
  color: var(--ink);
  box-shadow: var(--shadow-soft);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.page-home .engage-card::after {
  content: "";
  position: absolute;
  right: -20px;
  top: -20px;
  width: 80px;
  height: 80px;
  background: var(--home-accent-glow);
  border-radius: 50%;
}
.page-home .engage-card:hover {
  transform: translateY(-4px) rotate(-0.4deg);
  box-shadow: var(--shadow-float);
}
.page-home .engage-kicker {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: var(--accent);
}
.page-home .engage-card strong {
  font-size: 1.2rem;
  position: relative;
  z-index: 1;
}
.page-home .engage-arrow {
  align-self: flex-end;
  color: var(--accent);
  font-size: 1.3rem;
  margin-top: 6px;
}

/* ===== 桌面端适配 ===== */
@media (min-width: 900px) {
  .page-home .home-hero {
    padding: 176px 0 96px;
  }
  .page-home .hero-grid {
    grid-template-columns: 1.08fr 0.92fr;
    gap: 60px;
    align-items: start;
  }
  .page-home .hero-picture {
    margin-top: 40px;
  }
  .page-home .hero-photo {
    height: 520px;
  }
  .page-home .hero-entries {
    gap: 18px;
    margin-top: 0;
  }

  .page-home .guide-card {
    padding: 44px;
  }
  .page-home .guide-steps {
    grid-template-columns: 1fr 56px 1fr 56px 1fr;
    gap: 0;
    align-items: center;
  }
  .page-home .guide-step {
    border-left: 0;
    padding-left: 0;
    text-align: center;
  }
  .page-home .step-line {
    width: 56px;
    height: 2px;
    margin: 0;
    justify-self: center;
    background: linear-gradient(90deg, var(--accent), var(--sky-blue));
  }

  .page-home .features-mosaic {
    grid-template-columns: repeat(3, 1fr);
  }
  .page-home .tile-schedule {
    grid-column: span 2;
  }
  .page-home .tile-content {
    grid-column: span 1;
  }
  .page-home .tile-feedback {
    grid-column: span 1;
  }
  .page-home .tile-faq {
    grid-column: span 2;
  }
  .page-home .tile-thumb img {
    height: 220px;
  }

  .page-home .live-layout {
    grid-template-columns: 0.8fr 1.2fr;
    gap: 56px;
  }
  .page-home .notice-layout {
    grid-template-columns: 1.2fr 0.8fr;
    gap: 48px;
    align-items: center;
  }
  .page-home .notice-img-frame img {
    height: 320px;
  }

  .page-home .stats-layout {
    grid-template-columns: 0.9fr 1.1fr;
    gap: 48px;
  }
  .page-home .stats-media img {
    height: 380px;
  }
  .page-home .stats-board {
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
  }

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

@media (prefers-reduced-motion: reduce) {
  .page-home *,
  .page-home *::before,
  .page-home *::after {
    transition: none !important;
    animation: none !important;
  }
}
