.page-home {
  --home-gold-line: rgba(212, 175, 55, 0.55);
  --home-navy-deep: #06182E;
  --home-card-radius: 2px;
  overflow-x: hidden;
}

/* ===== 首屏 Hero ===== */
.page-home .home-hero {
  position: relative;
  background: linear-gradient(135deg, #0A1F3D 0%, #1A3A6E 100%);
  color: #FFFFFF;
  padding: 20px 0 64px;
  overflow: hidden;
}
.page-home .home-hero::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 36%;
  height: 100%;
  background: rgba(212, 175, 55, 0.06);
  clip-path: polygon(26% 0, 100% 0, 100% 100%, 0 100%);
  pointer-events: none;
}
.page-home .home-hero__breadcrumb {
  position: relative;
  z-index: 2;
}
.page-home .home-hero__breadcrumb .breadcrumb-link {
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  letter-spacing: 0.04em;
  transition: color 0.2s ease;
}
.page-home .home-hero__breadcrumb .breadcrumb-link:hover {
  color: #F2D57E;
}
.page-home .home-hero__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
  position: relative;
  z-index: 1;
  margin-top: 28px;
}
@media (min-width: 900px) {
  .page-home .home-hero {
    padding: 24px 0 96px;
  }
  .page-home .home-hero__inner {
    grid-template-columns: minmax(0, 1.08fr) minmax(340px, 0.92fr);
    gap: 56px;
    margin-top: 36px;
  }
}
.page-home .home-hero__kicker {
  color: #D4AF37;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin: 0 0 14px;
}
.page-home .home-hero__title {
  font-family: var(--font-display);
  font-size: clamp(32px, 6vw, 58px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: #FFFFFF;
  margin: 0 0 20px;
}
.page-home .home-hero__title span {
  display: block;
}
.page-home .home-hero__title em {
  display: block;
  font-style: normal;
  color: #D4AF37;
  margin-top: 6px;
}
.page-home .home-hero__lead {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.88);
  max-width: 56ch;
  margin: 0 0 28px;
}
.page-home .home-hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 22px;
}
.page-home .home-hero__trust {
  display: inline-block;
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.72);
  border-left: 2px solid #D4AF37;
  padding-left: 14px;
  margin: 0;
  max-width: 42ch;
}
.page-home .home-hero__visual {
  position: relative;
  min-height: 260px;
}
.page-home .home-hero__figure {
  margin: 0;
  position: relative;
  z-index: 0;
}
.page-home .home-hero__img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 460px;
  object-fit: cover;
  clip-path: polygon(14% 0, 100% 0, 86% 100%, 0 100%);
}
.page-home .home-hero__float {
  position: absolute;
  z-index: 2;
  display: grid;
  gap: 3px;
  min-width: 108px;
  padding: 14px 18px;
  background: linear-gradient(135deg, #F2D57E, #D4AF37);
  color: #0A1F3D;
  box-shadow: 0 18px 36px rgba(6, 24, 46, 0.38);
  animation: homeFloatIn 0.7s ease both;
}
.page-home .home-hero__float--one {
  top: 20px;
  left: 4px;
}
.page-home .home-hero__float--two {
  bottom: 20px;
  right: 4px;
  animation-delay: 0.14s;
}
@media (min-width: 720px) {
  .page-home .home-hero__float {
    min-width: 122px;
    padding: 16px 20px;
  }
  .page-home .home-hero__float--one {
    top: 30px;
    left: -14px;
  }
  .page-home .home-hero__float--two {
    bottom: 30px;
    right: -6px;
  }
}
.page-home .home-hero__float-num {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.01em;
}
.page-home .home-hero__float-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  opacity: 0.86;
}
@keyframes homeFloatIn {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===== 数据总览面板 ===== */
.page-home .home-overview {
  padding: 64px 0;
}
@media (min-width: 900px) {
  .page-home .home-overview {
    padding: 84px 0;
  }
}
.page-home .home-overview__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  align-items: center;
}
@media (min-width: 900px) {
  .page-home .home-overview__grid {
    grid-template-columns: 1.12fr 0.88fr;
    gap: 56px;
  }
}
.page-home .home-overview__stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 34px;
}
@media (min-width: 600px) and (max-width: 899px) {
  .page-home .home-overview__stats {
    grid-template-columns: repeat(4, 1fr);
  }
}
.page-home .home-stat-block {
  display: grid;
  gap: 6px;
  padding: 20px 18px;
  background: #FFFFFF;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
  animation: homeFloatIn 0.5s ease both;
}
.page-home .home-stat-block:nth-child(2) {
  animation-delay: 0.06s;
}
.page-home .home-stat-block:nth-child(3) {
  animation-delay: 0.12s;
}
.page-home .home-stat-block:nth-child(4) {
  animation-delay: 0.18s;
}
.page-home .home-stat-block:hover {
  border-color: #D4AF37;
  box-shadow: 0 12px 28px rgba(10, 31, 61, 0.1);
  transform: translateY(-3px);
}
.page-home .home-stat-block__num {
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 38px);
  font-weight: 800;
  line-height: 1.1;
  color: #0A1F3D;
}
.page-home .home-stat-block__label {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: #5A6B7A;
}
.page-home .home-overview__media {
  border: 1px solid rgba(212, 175, 55, 0.5);
  transition: border-color 0.25s ease;
}
.page-home .home-overview__media:hover {
  border-color: #C8102E;
}

/* ===== 四项核心服务 ===== */
.page-home .home-services {
  padding: 64px 0;
}
@media (min-width: 900px) {
  .page-home .home-services {
    padding: 84px 0;
  }
}
.page-home .home-services__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 40px;
}
@media (min-width: 720px) {
  .page-home .home-services__grid {
    grid-template-columns: repeat(12, 1fr);
    grid-auto-rows: minmax(150px, auto);
  }
  .page-home .home-service-card--start {
    grid-column: 1 / 8;
    grid-row: span 2;
  }
  .page-home .home-service-card--post {
    grid-column: 8 / 13;
    grid-row: 1;
  }
  .page-home .home-service-card--mobile {
    grid-column: 8 / 13;
    grid-row: 2;
  }
  .page-home .home-service-card--detail {
    grid-column: 1 / 13;
    grid-row: 3;
  }
}
.page-home .home-service-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 28px;
  background: #FFFFFF;
  border: 1px solid var(--home-gold-line);
  border-radius: var(--radius);
  position: relative;
  transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}
.page-home .home-service-card:hover {
  border-color: #C8102E;
  box-shadow: 0 16px 36px rgba(10, 31, 61, 0.12);
  transform: translateY(-4px);
}
.page-home .home-service-card--start {
  background: linear-gradient(135deg, #0A1F3D 0%, #1A3A6E 100%);
  color: #FFFFFF;
  border-color: rgba(212, 175, 55, 0.6);
}
.page-home .home-service-card--start .home-service-card__title {
  color: #FFFFFF;
}
.page-home .home-service-card--start .home-service-card__desc {
  color: rgba(255, 255, 255, 0.84);
}
.page-home .home-service-card--start .home-service-card__link {
  color: #F2D57E;
  border-color: rgba(242, 213, 126, 0.65);
}
.page-home .home-service-card--start .home-service-card__link:hover {
  color: #C8102E;
  border-color: #C8102E;
}
.page-home .home-service-card--detail {
  background: #E3F2FD;
  border-color: rgba(10, 31, 61, 0.18);
}
.page-home .home-service-card--detail:hover {
  border-color: #C8102E;
}
.page-home .home-service-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.page-home .home-service-card__index {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: #C8102E;
}
.page-home .home-service-card__title {
  margin: 4px 0 0;
  font-family: var(--font-display);
  font-size: clamp(20px, 2.2vw, 26px);
  font-weight: 800;
  line-height: 1.28;
  color: #0A1F3D;
}
.page-home .home-service-card__desc {
  margin: 0;
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.75;
  color: #5A6B7A;
}
.page-home .home-service-card__link {
  display: inline-block;
  align-self: flex-start;
  margin-top: auto;
  padding-top: 10px;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  color: #0A1F3D;
  text-decoration: none;
  border-bottom: 1px solid rgba(212, 175, 55, 0.7);
  transition: color 0.2s ease, border-color 0.2s ease;
}
.page-home .home-service-card__link:hover {
  color: #C8102E;
  border-color: #C8102E;
}
.page-home .home-service-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 4px;
}
.page-home .home-service-card__tags span {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: #F2D57E;
  background: rgba(10, 31, 61, 0.35);
  border: 1px solid rgba(242, 213, 126, 0.4);
  padding: 6px 10px;
}
.page-home .home-service-card__detail-body {
  display: grid;
  gap: 14px;
  align-items: end;
}
@media (min-width: 900px) {
  .page-home .home-service-card__detail-body {
    grid-template-columns: 1fr auto;
    gap: 24px;
  }
  .page-home .home-service-card__detail-body .home-service-card__desc {
    max-width: 62ch;
  }
}
.page-home .home-service-card__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 4px;
}
.page-home .home-price-list {
  list-style: none;
  margin: 0;
  padding: 14px 0 0;
  border-top: 1px dashed var(--line);
  display: grid;
  gap: 10px;
}
.page-home .home-price-list li {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
}
.page-home .home-price-list li.home-price-list__team {
  flex-wrap: wrap;
}
.page-home .home-price-list span {
  font-size: 13px;
  color: #5A6B7A;
}
.page-home .home-price-list strong {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 800;
  color: #0A1F3D;
  white-space: nowrap;
}
.page-home .home-price-list__note {
  margin: -2px 0 0;
  font-size: 12px;
  font-weight: 600;
  color: #C8102E;
  letter-spacing: 0.04em;
}

/* ===== 战报更新（第12轮） ===== */
.page-home .home-report {
  padding: 64px 0;
  background: linear-gradient(135deg, #06182E 0%, #0A1F3D 72%, #1A3A6E 100%);
}
@media (min-width: 900px) {
  .page-home .home-report {
    padding: 84px 0;
  }
}
.page-home .section-head--light .kicker {
  color: #F2D57E;
}
.page-home .section-head--light .section-title {
  color: #FFFFFF;
}
.page-home .section-head--light .lead {
  color: rgba(255, 255, 255, 0.78);
}
.page-home .home-report__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin: 40px 0 28px;
}
@media (min-width: 720px) {
  .page-home .home-report__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.page-home .home-report-card {
  display: grid;
  gap: 10px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(212, 175, 55, 0.45);
  border-radius: var(--radius);
  transition: background 0.28s ease, border-color 0.28s ease, transform 0.28s ease;
}
.page-home .home-report-card:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #C8102E;
  transform: translateY(-3px);
}
.page-home .home-report-card__round {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #F2D57E;
}
.page-home .home-report-card__title {
  margin: 0;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 800;
  line-height: 1.4;
  color: #FFFFFF;
}
.page-home .home-report-card__summary {
  margin: 0;
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.72);
}
.page-home .home-report__media {
  margin: 0;
  border: 1px solid rgba(212, 175, 55, 0.5);
  transition: border-color 0.28s ease;
}
.page-home .home-report__media:hover {
  border-color: #F2D57E;
}

/* ===== 移动端体验说明 ===== */
.page-home .home-mobile {
  padding: 64px 0;
  background: #FFFFFF;
}
@media (min-width: 900px) {
  .page-home .home-mobile {
    padding: 84px 0;
  }
}
.page-home .home-mobile__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}
@media (min-width: 900px) {
  .page-home .home-mobile__grid {
    grid-template-columns: 0.82fr 1.18fr;
    gap: 64px;
  }
}
.page-home .home-mobile__preview {
  position: relative;
}
.page-home .home-phone {
  position: relative;
  max-width: 320px;
  margin: 0 auto;
  padding: 12px;
  background: #0A1F3D;
  border: 4px solid #0A1F3D;
  border-radius: 28px;
  box-shadow: 0 24px 64px rgba(10, 31, 61, 0.24);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.page-home .home-phone:hover {
  transform: translateY(-8px) rotate(-1deg);
  box-shadow: 0 32px 72px rgba(10, 31, 61, 0.32);
}
.page-home .home-phone__screen {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  line-height: 0;
}
.page-home .home-phone__img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.page-home .home-phone:hover .home-phone__img {
  transform: scale(1.04);
}
.page-home .home-phone__caption {
  position: absolute;
  left: 14px;
  bottom: 14px;
  padding: 8px 14px;
  background: rgba(10, 31, 61, 0.88);
  color: #F2D57E;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1.2;
  border-radius: 999px;
  border: 1px solid rgba(242, 213, 126, 0.5);
  pointer-events: none;
}
.page-home .home-feature-list {
  list-style: none;
  margin: 24px 0 0;
  padding: 0;
  display: grid;
  gap: 4px;
}
.page-home .home-feature-list__item {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 16px;
  align-items: start;
  padding: 16px 8px;
  border-bottom: 1px solid var(--line);
  border-radius: var(--radius);
  transition: border-color 0.25s ease, background 0.25s ease;
}
.page-home .home-feature-list__item:hover {
  border-color: #C8102E;
  background: #F8FAFC;
}
.page-home .home-feature-list__mark {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  background: #0A1F3D;
  color: #D4AF37;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 800;
  border-radius: var(--radius);
}
.page-home .home-feature-list__item strong {
  display: block;
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 800;
  color: #0A1F3D;
  margin-bottom: 4px;
}
.page-home .home-feature-list__item p {
  margin: 0;
  font-size: 14px;
  line-height: 1.7;
  color: #5A6B7A;
}

/* ===== 更新与记录说明 ===== */
.page-home .home-update {
  padding: 64px 0;
}
@media (min-width: 900px) {
  .page-home .home-update {
    padding: 84px 0;
  }
}
.page-home .home-update__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin: 40px 0 28px;
}
@media (min-width: 720px) {
  .page-home .home-update__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.page-home .home-update-block {
  display: grid;
  gap: 10px;
  padding: 28px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(10, 31, 61, 0.16);
  border-radius: var(--radius);
  transition: border-color 0.28s ease, box-shadow 0.28s ease, transform 0.28s ease;
}
.page-home .home-update-block:hover {
  border-color: #C8102E;
  box-shadow: 0 14px 30px rgba(10, 31, 61, 0.12);
  transform: translateY(-3px);
}
.page-home .home-update-block__step {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: #C8102E;
}
.page-home .home-update-block__title {
  margin: 0;
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 800;
  color: #0A1F3D;
}
.page-home .home-update-block__text {
  margin: 0;
  font-size: 14px;
  line-height: 1.75;
  color: #5A6B7A;
}
.page-home .home-update__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

/* ===== 移动端窄屏保护 ===== */
@media (max-width: 479px) {
  .page-home .home-hero__ctas {
    flex-direction: column;
    align-items: flex-start;
  }
  .page-home .home-hero__ctas .btn {
    width: 100%;
    max-width: 260px;
    text-align: center;
  }
  .page-home .home-hero__float {
    min-width: 96px;
    padding: 12px 14px;
  }
  .page-home .home-hero__float-num {
    font-size: 24px;
  }
  .page-home .home-price-list li {
    flex-wrap: wrap;
  }
}
@media (prefers-reduced-motion: no-preference) {
  .page-home .home-stat-block {
    animation: homeFloatIn 0.5s ease both;
  }
  .page-home .home-stat-block:nth-child(2) {
    animation-delay: 0.06s;
  }
  .page-home .home-stat-block:nth-child(3) {
    animation-delay: 0.12s;
  }
  .page-home .home-stat-block:nth-child(4) {
    animation-delay: 0.18s;
  }
}
@media (prefers-reduced-motion: reduce) {
  .page-home .home-hero__float,
  .page-home .home-stat-block {
    animation: none;
  }
  .page-home .home-service-card,
  .page-home .home-report-card,
  .page-home .home-update-block {
    transition: none;
  }
}
