.page-home {
  --home-red-glow: rgba(214, 40, 40, 0.14);
  --home-gold-soft: rgba(212, 175, 55, 0.18);
  --home-blue-soft: rgba(30, 58, 95, 0.08);
  --home-text-muted: #718096;
  --home-line: rgba(255, 255, 255, 0.14);
  background: #F5F7FA;
  overflow-x: hidden;
}

.page-home .container {
  width: min(1280px, 100% - 40px);
  margin-inline: auto;
}

.page-home .section-eyebrow {
  color: #D4AF37;
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 8px;
  font-weight: 700;
}

.page-home .section-title {
  font-family: 'Anton', 'Impact', 'Arial Black', 'PingFang SC', 'Microsoft YaHei', sans-serif;
  font-size: clamp(2rem, 5vw, 3rem);
  line-height: 1.05;
  color: #0B1D3A;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  margin: 0 0 14px;
}

.page-home .section-subtitle {
  max-width: 760px;
  font-size: 1rem;
  line-height: 1.75;
  color: #718096;
}

.page-home .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 28px;
  border-radius: 999px;
  border: 2px solid transparent;
  font-family: 'Roboto', 'Open Sans', 'PingFang SC', 'Microsoft YaHei', Arial, sans-serif;
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.page-home .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(11, 29, 58, 0.2);
}

.page-home .btn--gold {
  background: linear-gradient(135deg, #D4AF37, #F0C75E);
  color: #0B1D3A;
  box-shadow: 0 8px 22px rgba(212, 175, 55, 0.35);
}

.page-home .btn--outline {
  border-color: rgba(11, 29, 58, 0.35);
  color: #0B1D3A;
  background: rgba(255, 255, 255, 0.5);
}

.page-home .btn--outline:hover {
  border-color: #D4AF37;
  background: rgba(212, 175, 55, 0.08);
}

.page-home .btn--red {
  background: linear-gradient(135deg, #D62828, #EF5350);
  color: #FFFFFF;
  box-shadow: 0 8px 22px rgba(214, 40, 40, 0.3);
}

.page-home .tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 13px;
  border-radius: 99px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.4;
}

.page-home .tag--gold {
  background: rgba(212, 175, 55, 0.16);
  color: #B4942D;
  border: 1px solid rgba(212, 175, 55, 0.25);
}

.page-home .tag--red {
  background: rgba(214, 40, 40, 0.12);
  color: #C02020;
  border: 1px solid rgba(214, 40, 40, 0.3);
}

.page-home .section--dark {
  background: #0B1D3A;
  color: #F5F7FA;
  position: relative;
}

.page-home .section--dark .section-title {
  color: #F5F7FA;
}

.page-home .section--dark .section-subtitle {
  color: rgba(245, 247, 250, 0.7);
}

.page-home .section--dark .section-eyebrow {
  color: #F0C75E;
}

/* ===== 首屏 ===== */
.page-home .home-hero {
  position: relative;
  background: linear-gradient(140deg, #0B1D3A 0%, #0B1D3A 54%, #1E3A5F 54.4%, #1E3A5F 100%);
  clip-path: polygon(0 0, 100% 0, 100% 88%, 0 100%);
  padding: 100px 0 120px;
  min-height: 620px;
  display: flex;
  align-items: center;
}

.page-home .home-hero__inner {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.page-home .home-hero__kicker {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #F0C75E;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.page-home .home-hero__kicker-line {
  display: block;
  width: 42px;
  height: 2px;
  background: linear-gradient(90deg, #D4AF37, transparent);
}

.page-home .home-hero__title {
  font-family: 'Anton', 'Impact', 'Arial Black', 'PingFang SC', 'Microsoft YaHei', sans-serif;
  font-size: clamp(3.2rem, 8vw, 5.6rem);
  line-height: 0.95;
  font-weight: 400;
  text-transform: uppercase;
  color: #FFFFFF;
  letter-spacing: 0.01em;
  margin: 0 0 22px;
  text-shadow: 0 8px 30px rgba(0, 0, 0, 0.22);
}

.page-home .home-hero__lead {
  font-size: 1.04rem;
  line-height: 1.8;
  color: rgba(245, 247, 250, 0.82);
  max-width: 480px;
  margin-bottom: 30px;
}

.page-home .home-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.page-home .home-hero__visual {
  position: relative;
}

.page-home .home-hero__image-wrap {
  clip-path: polygon(12% 0, 100% 0, 100% 100%, 0 88%);
  overflow: hidden;
}

.page-home .home-hero__image-wrap img {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  object-fit: cover;
  filter: saturate(1.05) contrast(1.03);
  transform: scale(1.01);
}

.page-home .home-hero__score-card {
  position: absolute;
  left: -24px;
  bottom: 18px;
  background: linear-gradient(135deg, #D4AF37, #F0C75E);
  color: #0B1D3A;
  padding: 14px 18px 14px 22px;
  border-radius: 14px;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.28);
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  min-width: 180px;
  transform: rotate(-1deg);
}

.page-home .home-hero__score-label {
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.75;
  max-width: 64px;
  line-height: 1.3;
}

.page-home .home-hero__score-num {
  font-family: 'Anton', 'Impact', 'Arial Black', sans-serif;
  font-size: 2.6rem;
  line-height: 1;
}

.page-home .home-hero__score-unit {
  font-size: 0.8rem;
  opacity: 0.7;
  align-self: flex-end;
  margin-bottom: 4px;
}

.page-home .home-hero__score-divider {
  width: 1px;
  height: 30px;
  background: rgba(11, 29, 58, 0.25);
}

.page-home .home-hero__score-tag {
  background: rgba(11, 29, 58, 0.1);
  color: #0B1D3A;
  padding: 5px 10px;
  border-radius: 99px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  white-space: nowrap;
}

.page-home .home-hero__diag {
  position: absolute;
  pointer-events: none;
  z-index: 1;
}

.page-home .home-hero__diag--gold {
  width: 240px;
  height: 240px;
  right: -80px;
  top: -60px;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.28), transparent 65%);
  clip-path: polygon(0 0, 100% 0, 100% 100%);
}

.page-home .home-hero__diag--red {
  width: 180px;
  height: 180px;
  left: 36%;
  bottom: -40px;
  background: linear-gradient(135deg, transparent 30%, rgba(214, 40, 40, 0.28));
  clip-path: polygon(40% 0, 100% 100%, 0 100%);
}

/* ===== 快速入口 ===== */
.page-home .home-quick {
  position: relative;
  z-index: 3;
  padding: 70px 0 60px;
  margin-top: -20px;
}

.page-home .home-quick__head {
  margin-bottom: 36px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: end;
  gap: 20px 32px;
}

.page-home .home-quick__head .section-eyebrow {
  grid-column: 1;
  grid-row: 1 / 3;
  align-self: start;
  padding-top: 6px;
}

.page-home .home-quick__head .section-title {
  grid-column: 2;
  grid-row: 1;
}

.page-home .home-quick__head .section-subtitle {
  grid-column: 2;
  grid-row: 2;
}

.page-home .home-quick__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.page-home .home-quick__card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 30px 24px 24px;
  border-radius: 24px;
  text-decoration: none;
  min-height: 260px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  border: 1px solid transparent;
}

.page-home .home-quick__card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(11, 29, 58, 0.22);
  border-color: rgba(212, 175, 55, 0.4);
}

.page-home .home-quick__num {
  position: absolute;
  top: 18px;
  right: 22px;
  font-family: 'Anton', 'Impact', 'Arial Black', sans-serif;
  font-size: 2.6rem;
  opacity: 0.14;
  line-height: 1;
  color: inherit;
}

.page-home .home-quick__icon {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  background: rgba(255, 255, 255, 0.2);
}

.page-home .home-quick__title {
  font-family: 'Anton', 'Impact', 'Arial Black', 'PingFang SC', 'Microsoft YaHei', sans-serif;
  font-size: 1.35rem;
  margin-bottom: 10px;
  letter-spacing: 0.02em;
  color: inherit;
  text-transform: uppercase;
}

.page-home .home-quick__desc {
  font-size: 0.85rem;
  line-height: 1.7;
  color: inherit;
  opacity: 0.82;
  flex: 1;
}

.page-home .home-quick__link {
  margin-top: 18px;
  font-size: 0.82rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  opacity: 0.9;
  letter-spacing: 0.03em;
}

.page-home .home-quick__card--red {
  background: linear-gradient(148deg, #D62828, #B91D1D);
  color: #FFFFFF;
}

.page-home .home-quick__card--blue {
  background: linear-gradient(148deg, #16294F, #0B1D3A);
  color: #FFFFFF;
}

.page-home .home-quick__card--gold {
  background: linear-gradient(148deg, #D4AF37, #F0C75E);
  color: #0B1D3A;
}

.page-home .home-quick__card--gold .home-quick__desc,
.page-home .home-quick__card--gold .home-quick__link {
  color: #1E3A5F;
}

.page-home .home-quick__card--outline {
  background: linear-gradient(148deg, #FDF6E3, #FFFDF7);
  border-color: rgba(212, 175, 55, 0.4);
  color: #0B1D3A;
  box-shadow: 0 4px 14px rgba(11, 29, 58, 0.05);
}

/* ===== 最新赛事更新 ===== */
.page-home .home-latest {
  clip-path: polygon(0 0, 100% 4%, 100% 96%, 0 100%);
  padding: 110px 0 120px;
}

.page-home .home-latest .section-head {
  margin-bottom: 46px;
}

.page-home .home-latest__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.page-home .home-latest__article {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  flex-direction: column;
  transition: background 0.3s ease, transform 0.3s ease, border-color 0.3s ease;
  backdrop-filter: blur(4px);
}

.page-home .home-latest__article:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(212, 175, 55, 0.35);
  transform: translateY(-4px);
}

.page-home .home-latest__tag {
  align-self: flex-start;
  margin-bottom: 16px;
}

.page-home .home-latest__heading {
  font-size: 1.18rem;
  line-height: 1.45;
  color: #FFFFFF;
  margin: 0 0 12px;
  letter-spacing: 0.02em;
  font-weight: 700;
}

.page-home .home-latest__text {
  font-size: 0.88rem;
  line-height: 1.72;
  color: rgba(245, 247, 250, 0.64);
  flex: 1;
  margin-bottom: 18px;
}

.page-home .home-latest__meta {
  display: flex;
  flex-direction: column;
  gap: 5px;
  font-size: 0.76rem;
  color: rgba(245, 247, 250, 0.52);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 14px;
  margin-bottom: 14px;
}

.page-home .home-latest__more {
  color: #F0C75E;
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.2s ease;
}

.page-home .home-latest__more:hover {
  gap: 10px;
}

/* ===== 数据可视化预览 ===== */
.page-home .home-data {
  padding: 80px 0 90px;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 60px;
  align-items: center;
}

.page-home .home-data__intro .section-title {
  margin-bottom: 16px;
}

.page-home .home-data__feature-list {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.page-home .home-data__feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.92rem;
  font-weight: 500;
  color: #2D3748;
  background: #FFFFFF;
  border: 1px solid rgba(11, 29, 58, 0.08);
  border-radius: 14px;
  padding: 12px 16px;
  box-shadow: 0 2px 8px rgba(11, 29, 58, 0.04);
}

.page-home .home-data__feature-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, #D4AF37, #F0C75E);
  flex-shrink: 0;
}

.page-home .home-data__visual {
  position: relative;
  background: linear-gradient(150deg, #FFFFFF, #F5F7FA);
  border-radius: 24px;
  padding: 18px;
  box-shadow: 0 18px 40px rgba(11, 29, 58, 0.12);
  border: 1px solid rgba(11, 29, 58, 0.06);
}

.page-home .home-data__visual img {
  border-radius: 18px;
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
}

.page-home .home-data__label-group {
  position: absolute;
  top: 34px;
  right: 34px;
  display: flex;
  gap: 8px;
  z-index: 2;
}

.page-home .home-data__caption {
  margin-top: 12px;
  font-size: 0.78rem;
  color: #718096;
  text-align: center;
  letter-spacing: 0.04em;
}

/* ===== 华人专区 ===== */
.page-home .home-community {
  background: linear-gradient(120deg, #FEF7EA 0%, #FFF9EE 45%, #FDEDEB 100%);
  position: relative;
  overflow: hidden;
  padding: 90px 0;
}

.page-home .home-community::before {
  content: "";
  position: absolute;
  top: -80px;
  right: -80px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(214, 40, 40, 0.1), transparent 70%);
}

.page-home .home-community::after {
  content: "";
  position: absolute;
  bottom: -60px;
  left: -60px;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.16), transparent 70%);
}

.page-home .home-community__inner {
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  gap: 56px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.page-home .home-community__eyebrow {
  color: #C02020;
}

.page-home .home-community__title {
  font-family: 'Anton', 'Impact', 'Arial Black', 'PingFang SC', 'Microsoft YaHei', sans-serif;
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  line-height: 1.08;
  color: #0B1D3A;
  text-transform: uppercase;
  margin: 0 0 16px;
}

.page-home .home-community__lead {
  font-size: 1.04rem;
  line-height: 1.8;
  color: #2D3748;
  margin-bottom: 24px;
  max-width: 540px;
}

.page-home .home-community__list {
  list-style: none;
  padding: 0;
  margin: 0 0 30px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.page-home .home-community__list li {
  position: relative;
  padding-left: 26px;
  font-size: 0.92rem;
  color: #2D3748;
  line-height: 1.6;
}

.page-home .home-community__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 10px;
  height: 10px;
  background: linear-gradient(135deg, #D62828, #EF5350);
  clip-path: polygon(50% 0, 100% 50%, 50% 100%, 0 50%);
}

.page-home .home-community__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.page-home .home-community__visual {
  position: relative;
}

.page-home .home-community__visual img {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  border-radius: 24px;
  box-shadow: 0 24px 48px rgba(11, 29, 58, 0.18);
}

.page-home .home-community__badge {
  position: absolute;
  bottom: -18px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #D62828, #EF5350);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 22px;
  border-radius: 999px;
  box-shadow: 0 12px 30px rgba(214, 40, 40, 0.35);
  white-space: nowrap;
}

.page-home .home-community__badge-text {
  font-family: 'Anton', 'Impact', 'Arial Black', 'PingFang SC', 'Microsoft YaHei', sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.page-home .home-community__badge-line {
  display: block;
  width: 20px;
  height: 1px;
  background: rgba(255, 255, 255, 0.6);
}

/* ===== 专家专栏 ===== */
.page-home .home-experts {
  clip-path: polygon(0 4%, 100% 0, 100% 96%, 0 100%);
  padding: 110px 0 110px;
}

.page-home .home-experts__head {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: end;
  gap: 0 32px;
  margin-bottom: 44px;
}

.page-home .home-experts__head .section-eyebrow {
  grid-column: 1;
  grid-row: 1 / 3;
  align-self: start;
  padding-top: 6px;
}

.page-home .home-experts__head .section-title {
  grid-column: 2;
  grid-row: 1;
}

.page-home .home-experts__head .section-subtitle {
  grid-column: 2;
  grid-row: 2;
}

.page-home .home-experts__all {
  grid-column: 3;
  grid-row: 1 / 3;
  color: #F0C75E;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.88rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 1px solid rgba(240, 199, 94, 0.4);
  padding: 10px 18px;
  border-radius: 999px;
  transition: background 0.24s ease, transform 0.24s ease;
}

.page-home .home-experts__all:hover {
  background: rgba(240, 199, 94, 0.12);
  transform: translateY(-2px);
}

.page-home .home-experts__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.page-home .home-experts__card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, border-color 0.35s ease, background 0.3s ease;
}

.page-home .home-experts__card:hover {
  transform: translateY(-6px);
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(212, 175, 55, 0.35);
}

.page-home .home-experts__card-media img {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  object-fit: cover;
}

.page-home .home-experts__card-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.page-home .home-experts__tag {
  align-self: flex-start;
  margin-bottom: 14px;
}

.page-home .home-experts__heading {
  font-size: 1.05rem;
  line-height: 1.5;
  color: #FFFFFF;
  margin: 0 0 10px;
  font-weight: 700;
}

.page-home .home-experts__text {
  font-size: 0.85rem;
  line-height: 1.7;
  color: rgba(245, 247, 250, 0.62);
  margin-bottom: 0;
}

/* ===== 新用户专区 ===== */
.page-home .home-newcomer {
  padding: 90px 0 100px;
}

.page-home .home-newcomer__panel {
  background: linear-gradient(145deg, #FFFFFF, #F8FAFC);
  border-radius: 30px;
  box-shadow: 0 24px 60px rgba(11, 29, 58, 0.12);
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  overflow: hidden;
  border: 1px solid rgba(11, 29, 58, 0.06);
}

.page-home .home-newcomer__copy {
  padding: 52px 48px;
}

.page-home .home-newcomer__lead {
  font-size: 0.98rem;
  line-height: 1.75;
  color: #718096;
  margin-bottom: 30px;
}

.page-home .home-newcomer__steps {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 32px;
}

.page-home .home-newcomer__step {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.page-home .home-newcomer__step-num {
  font-family: 'Anton', 'Impact', 'Arial Black', sans-serif;
  font-size: 2rem;
  color: #D4AF37;
  line-height: 1;
  min-width: 40px;
}

.page-home .home-newcomer__step strong {
  display: block;
  font-size: 0.98rem;
  color: #0B1D3A;
  margin-bottom: 4px;
}

.page-home .home-newcomer__step p {
  font-size: 0.85rem;
  line-height: 1.65;
  color: #718096;
  margin: 0;
}

.page-home .home-newcomer__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.page-home .home-newcomer__side {
  background: linear-gradient(155deg, #0B1D3A, #1E3A5F);
  padding: 52px 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 32px;
  position: relative;
  overflow: hidden;
}

.page-home .home-newcomer__side::before {
  content: "";
  position: absolute;
  right: -50px;
  top: -50px;
  width: 180px;
  height: 180px;
  border: 2px solid rgba(212, 175, 55, 0.25);
  border-radius: 50%;
}

.page-home .home-newcomer__side::after {
  content: "";
  position: absolute;
  left: -20px;
  bottom: -20px;
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, rgba(214, 40, 40, 0.3), transparent);
  clip-path: polygon(50% 0, 100% 50%, 50% 100%, 0 50%);
}

.page-home .home-newcomer__card {
  position: relative;
  z-index: 2;
}

.page-home .home-newcomer__card-kicker {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #F0C75E;
  font-weight: 700;
  margin-bottom: 16px;
}

.page-home .home-newcomer__card-value {
  display: block;
  font-family: 'Anton', 'Impact', 'Arial Black', sans-serif;
  font-size: 4.2rem;
  line-height: 1;
  color: #FFFFFF;
}

.page-home .home-newcomer__card-label {
  display: block;
  font-size: 0.9rem;
  color: rgba(245, 247, 250, 0.65);
  margin-top: 8px;
}

.page-home .home-newcomer__note {
  position: relative;
  z-index: 2;
  font-size: 0.85rem;
  line-height: 1.7;
  color: rgba(245, 247, 250, 0.72);
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  padding-top: 20px;
}

.page-home .home-newcomer__note a {
  color: #F0C75E;
  text-decoration: none;
  font-weight: 700;
}

.page-home .home-newcomer__note p {
  margin-bottom: 8px;
}

/* ===== 底部信任带 ===== */
.page-home .home-trust {
  background: #F5F7FA;
  padding: 20px 0 100px;
  border-top: 1px solid rgba(11, 29, 58, 0.06);
}

.page-home .home-trust__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}

.page-home .home-trust__statement {
  font-family: 'Anton', 'Impact', 'Arial Black', 'PingFang SC', 'Microsoft YaHei', sans-serif;
  font-size: clamp(1.1rem, 2.4vw, 1.5rem);
  color: #0B1D3A;
  line-height: 1.4;
  max-width: 640px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin: 0;
}

.page-home .home-trust__links {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* ===== 移动端响应 ===== */
@media (max-width: 1024px) {
  .page-home .home-hero__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .page-home .home-hero {
    padding: 80px 0 100px;
  }

  .page-home .home-hero__visual {
    max-width: 620px;
  }

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

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

  .page-home .home-data {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .page-home .home-data__visual {
    max-width: 620px;
  }

  .page-home .home-community__inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

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

  .page-home .home-newcomer__panel {
    grid-template-columns: 1fr;
  }

  .page-home .home-newcomer__side {
    padding: 40px 32px;
  }
}

@media (max-width: 640px) {
  .page-home {
    overflow-x: hidden;
  }

  .page-home .container {
    width: min(1280px, 100% - 32px);
  }

  .page-home .home-hero {
    clip-path: polygon(0 0, 100% 0, 100% 94%, 0 100%);
    padding: 70px 0 90px;
    min-height: auto;
  }

  .page-home .home-hero__title {
    font-size: clamp(2.8rem, 14vw, 3.6rem);
  }

  .page-home .home-hero__lead {
    font-size: 0.92rem;
  }

  .page-home .home-hero__actions {
    flex-direction: column;
  }

  .page-home .home-hero__actions .btn {
    width: 100%;
  }

  .page-home .home-hero__image-wrap {
    clip-path: polygon(6% 0, 100% 0, 100% 100%, 0 92%);
  }

  .page-home .home-hero__score-card {
    left: 8px;
    bottom: 8px;
    min-width: 160px;
    padding: 12px 14px 12px 16px;
  }

  .page-home .home-quick__head {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .page-home .home-quick__head .section-eyebrow {
    grid-column: 1;
    grid-row: auto;
  }

  .page-home .home-quick__head .section-title {
    grid-column: 1;
    grid-row: auto;
  }

  .page-home .home-quick__head .section-subtitle {
    grid-column: 1;
    grid-row: auto;
  }

  .page-home .home-quick__grid {
    grid-template-columns: 1fr;
  }

  .page-home .home-quick__card {
    min-height: 0;
  }

  .page-home .home-latest,
  .page-home .home-experts {
    clip-path: polygon(0 2%, 100% 0, 100% 98%, 0 100%);
    padding: 80px 0;
  }

  .page-home .home-experts__head {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .page-home .home-experts__head .section-eyebrow,
  .page-home .home-experts__head .section-title,
  .page-home .home-experts__head .section-subtitle,
  .page-home .home-experts__all {
    grid-column: 1;
    grid-row: auto;
  }

  .page-home .home-experts__all {
    justify-self: flex-start;
    margin-top: 8px;
  }

  .page-home .home-data {
    padding: 60px 0;
  }

  .page-home .home-community {
    padding: 70px 0;
  }

  .page-home .home-community__badge {
    bottom: -14px;
    padding: 10px 16px;
    gap: 8px;
  }

  .page-home .home-community__badge-line {
    display: none;
  }

  .page-home .home-newcomer {
    padding: 60px 0 70px;
  }

  .page-home .home-newcomer__copy {
    padding: 32px 24px;
  }

  .page-home .home-newcomer__side {
    padding: 32px 24px;
  }

  .page-home .home-newcomer__actions {
    flex-direction: column;
  }

  .page-home .home-newcomer__actions .btn {
    width: 100%;
  }

  .page-home .home-trust__inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .page-home .home-trust__links {
    width: 100%;
    flex-direction: column;
  }

  .page-home .home-trust__links .btn {
    width: 100%;
  }
}
