.page-home {
  overflow-x: clip;
}

.page-home .section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 10px;
  font-family: var(--font-data);
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-orange);
}

.page-home .section-kicker::before {
  content: "";
  width: 24px;
  height: 2px;
  background: currentColor;
  display: inline-block;
}

.page-home .section-title {
  font-family: var(--font-headline);
  font-style: italic;
  font-weight: 900;
  font-size: clamp(1.7rem, 3vw, 2.6rem);
  line-height: 1.15;
  color: var(--color-navy);
  margin: 0 0 14px;
}

.page-home .section-sub {
  color: #55627d;
  font-size: 1rem;
  margin: 0;
}

.page-home .news-section .section-title,
.page-home .center-section .section-title {
  color: var(--color-white);
}

.page-home .news-section .section-sub,
.page-home .center-section .section-sub {
  color: var(--color-slate);
}

/* ---------- 首屏 ---------- */
.page-home .home-hero {
  position: relative;
  background: var(--color-navy);
  color: var(--color-white);
  overflow: hidden;
  min-height: 640px;
}

.page-home .hero-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.22;
  filter: saturate(0.9) contrast(1.1);
}

.page-home .hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(1200px 500px at 15% 20%, rgba(255, 107, 53, 0.18), transparent 60%),
    radial-gradient(900px 400px at 85% 75%, rgba(0, 194, 168, 0.14), transparent 60%),
    linear-gradient(110deg, rgba(7, 22, 51, 0.92) 0%, rgba(10, 31, 68, 0.88) 42%, rgba(10, 31, 68, 0.62) 100%);
}

.page-home .home-hero::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 10px;
  background: linear-gradient(100deg, rgba(255, 107, 53, 0.85) 0% 36%, rgba(0, 194, 168, 0.85) 36% 100%);
  z-index: 3;
}

.page-home .hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.2rem;
  padding-top: calc(var(--header-height) + 40px);
  padding-bottom: 3.2rem;
}

.page-home .hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  font-family: var(--font-data);
  font-size: 0.82rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-teal);
}

.page-home .hero-kicker::before {
  content: "";
  width: 34px;
  height: 3px;
  background: var(--color-orange);
  display: inline-block;
  clip-path: polygon(0 0, 100% 0, 82% 100%, 0 100%);
}

.page-home .hero-title {
  font-family: var(--font-headline);
  font-style: italic;
  font-weight: 900;
  font-size: clamp(2.4rem, 7vw, 4.4rem);
  line-height: 1.04;
  letter-spacing: 0.01em;
  color: var(--color-white);
  margin: 0 0 20px;
}

.page-home .hero-desc {
  color: var(--color-slate);
  font-size: 1rem;
  line-height: 1.75;
  margin: 0 0 28px;
  max-width: 560px;
}

.page-home .hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 34px;
}

.page-home .quick-entry {
  max-width: 580px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--radius);
  padding: 18px 20px 20px;
}

.page-home .quick-entry-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
  flex-wrap: wrap;
}

.page-home .quick-entry-title {
  font-family: var(--font-headline);
  font-style: italic;
  font-size: 0.96rem;
  color: var(--color-white);
  letter-spacing: 0.05em;
}

.page-home .quick-entry-ver {
  font-family: var(--font-data);
  font-size: 0.76rem;
  color: var(--color-teal);
  background: rgba(0, 194, 168, 0.12);
  padding: 3px 10px;
  border-radius: 999px;
}

.page-home .quick-entry-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.page-home .quick-link {
  display: inline-block;
  color: var(--color-white);
  text-decoration: none;
  font-size: 0.9rem;
  padding: 7px 14px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  transition: border-color var(--ease), background var(--ease), color var(--ease), transform var(--ease);
}

.page-home .quick-link:hover {
  border-color: var(--color-orange);
  background: rgba(255, 107, 53, 0.18);
  transform: translateY(-2px);
}

.page-home .hero-feed {
  position: relative;
  padding: 4px 0 4px 18px;
}

.page-home .hero-feed::before {
  content: "";
  position: absolute;
  top: 24px;
  right: 0;
  left: 30px;
  height: 62%;
  background: linear-gradient(135deg, rgba(255, 107, 53, 0.32), rgba(0, 194, 168, 0.18));
  border-radius: 50%;
  filter: blur(46px);
  z-index: 0;
}

.page-home .hero-feed-head {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.page-home .feed-title {
  font-family: var(--font-headline);
  font-style: italic;
  font-size: 1.02rem;
  color: var(--color-white);
  letter-spacing: 0.08em;
}

.page-home .feed-more {
  font-family: var(--font-data);
  font-size: 0.78rem;
  color: var(--color-teal);
}

.page-home .feed-card {
  position: relative;
  z-index: 1;
  display: block;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  padding: 16px 18px;
  margin-bottom: 12px;
  text-decoration: none;
  color: var(--color-white);
  clip-path: polygon(0 0, 100% 0, calc(100% - 10px) 100%, 0 100%);
  transition: transform var(--ease), box-shadow var(--ease), background var(--ease), border-color var(--ease);
}

.page-home .feed-card:hover {
  transform: translateY(-4px);
  background: rgba(255, 107, 53, 0.14);
  border-color: rgba(255, 107, 53, 0.45);
  box-shadow: var(--shadow-orange);
}

.page-home .feed-card-title {
  display: block;
  font-weight: 600;
  font-size: 0.96rem;
  line-height: 1.5;
  margin: 8px 0 6px;
  color: var(--color-white);
}

.page-home .feed-card-meta {
  display: block;
  font-family: var(--font-data);
  font-size: 0.74rem;
  color: var(--color-slate);
}

/* ---------- 夏季更新 ---------- */
.page-home .update-section {
  position: relative;
  background: var(--color-light);
  color: var(--color-navy);
  overflow: hidden;
  padding: 68px 0;
}

.page-home .update-section::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 240px;
  height: 240px;
  background: radial-gradient(circle, rgba(255, 107, 53, 0.16), transparent 70%);
  pointer-events: none;
}

.page-home .update-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin: 42px 0 52px;
}

.page-home .update-card {
  border-top: 3px solid var(--color-teal);
  background: var(--color-white);
  border-radius: var(--radius);
  padding: 26px 24px;
  box-shadow: var(--shadow-sm);
  transition: transform var(--ease), box-shadow var(--ease), border-color var(--ease);
}

.page-home .update-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-top-color: var(--color-orange);
}

.page-home .card-index {
  display: block;
  font-family: var(--font-data);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-teal);
  margin-bottom: 14px;
}

.page-home .card-title {
  font-family: var(--font-headline);
  font-style: italic;
  font-size: 1.08rem;
  margin: 0 0 10px;
  color: var(--color-navy);
}

.page-home .card-text {
  color: #48556d;
  line-height: 1.7;
  font-size: 0.94rem;
  margin: 0;
}

.page-home .update-visual {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  align-items: center;
  background:
    repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.04) 0 2px, transparent 2px 18px),
    var(--color-navy);
  color: var(--color-white);
  border-radius: 14px;
  padding: 28px;
  box-shadow: var(--shadow-md);
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 24px), calc(100% - 86px) 100%, 0 100%);
}

.page-home .update-visual-kicker {
  display: block;
  font-family: var(--font-data);
  font-size: 0.78rem;
  color: var(--color-teal);
  letter-spacing: 0.12em;
  margin-bottom: 8px;
}

.page-home .update-visual-copy h3 {
  font-family: var(--font-headline);
  font-style: italic;
  font-size: 1.14rem;
  margin: 0 0 10px;
  color: var(--color-white);
}

.page-home .update-visual-copy p {
  color: var(--color-slate);
  font-size: 0.94rem;
  line-height: 1.7;
  margin: 0;
}

.page-home .update-visual img {
  width: 100%;
  height: auto;
  max-height: 300px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 18px 40px rgba(2, 8, 24, 0.42);
}

/* ---------- 最新赛讯预览 ---------- */
.page-home .news-section {
  background: var(--color-navy);
  color: var(--color-white);
  padding: 72px 0;
  position: relative;
}

.page-home .news-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 34px;
}

.page-home .news-intro-desc {
  color: var(--color-slate);
  margin: 0 0 24px;
  max-width: 360px;
}

.page-home .news-list {
  display: grid;
  gap: 16px;
}

.page-home .news-row {
  display: block;
  text-decoration: none;
  padding: 20px 22px 20px 26px;
  border-left: 3px solid var(--color-orange);
  border-radius: 0 10px 10px 0;
  background: rgba(255, 255, 255, 0.05);
  transition: background var(--ease), transform var(--ease), border-color var(--ease);
}

.page-home .news-row:hover {
  background: rgba(255, 107, 53, 0.1);
  border-left-color: var(--color-teal);
  transform: translateX(6px);
}

.page-home .news-title {
  display: block;
  font-weight: 600;
  font-size: 1.02rem;
  line-height: 1.55;
  color: var(--color-white);
  margin: 8px 0 6px;
}

.page-home .news-desc {
  display: block;
  color: var(--color-slate);
  font-size: 0.9rem;
  line-height: 1.65;
}

.page-home .news-photo {
  margin-top: 40px;
}

.page-home .news-photo img {
  display: block;
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 14px;
  box-shadow: var(--shadow-md);
  clip-path: polygon(0 0, calc(100% - 34px) 0, 100% 34px, 100% 100%, 34px 100%, 0 calc(100% - 34px));
}

/* ---------- 站内索引 ---------- */
.page-home .index-section {
  background: linear-gradient(180deg, var(--color-light) 0%, #e8edf3 100%);
  color: var(--color-navy);
  padding: 72px 0;
}

.page-home .index-split {
  display: grid;
  grid-template-columns: 1fr;
  gap: 42px;
  align-items: center;
}

.page-home .index-visual {
  position: relative;
}

.page-home .index-visual img {
  display: block;
  width: 100%;
  height: 380px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: var(--shadow-md);
  clip-path: polygon(0 0, 12% 0, 100% 14%, 100% 86%, 88% 100%, 0 84%);
}

.page-home .pitch-svg {
  position: absolute;
  left: -14px;
  bottom: -18px;
  width: 150px;
  height: 226px;
  filter: drop-shadow(0 6px 14px rgba(7, 22, 51, 0.24));
}

.page-home .index-stat {
  position: absolute;
  right: -8px;
  bottom: 40px;
  background: var(--color-orange);
  color: var(--color-white);
  padding: 14px 20px;
  border-radius: 10px;
  box-shadow: var(--shadow-orange);
  display: flex;
  flex-direction: column;
  align-items: center;
  transform: rotate(-3deg);
}

.page-home .index-stat .data-num {
  font-size: 1.8rem;
  line-height: 1;
}

.page-home .index-stat-label {
  font-size: 0.74rem;
  margin-top: 4px;
  letter-spacing: 0.06em;
}

.page-home .index-desc {
  color: #48556d;
  line-height: 1.75;
  margin: 0 0 20px;
}

.page-home .index-list {
  list-style: none;
  margin: 0 0 26px;
  padding: 0;
}

.page-home .index-list li {
  position: relative;
  padding-left: 24px;
  color: #33405c;
  line-height: 1.7;
  margin-bottom: 10px;
}

.page-home .index-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 13px;
  height: 5px;
  background: var(--color-orange);
  clip-path: polygon(0 0, 100% 0, 80% 100%, 0 100%);
}

/* ---------- 赛讯中心亮点 ---------- */
.page-home .center-section {
  background: var(--color-navy);
  color: var(--color-white);
  padding: 76px 0 84px;
  position: relative;
}

.page-home .center-section::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -5px;
  height: 12px;
  background: linear-gradient(100deg, var(--color-orange) 0% 46%, var(--color-teal) 46% 100%);
  transform: skewY(-1.4deg);
  z-index: 5;
  pointer-events: none;
}

.page-home .highlight-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  margin-top: 42px;
}

.page-home .highlight-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-top: 3px solid var(--color-orange);
  border-radius: 14px 4px 14px 4px;
  padding: 28px 22px;
  color: var(--color-white);
  transition: transform var(--ease), box-shadow var(--ease), border-color var(--ease);
}

.page-home .highlight-card:nth-child(even) {
  border-top-color: var(--color-teal);
}

.page-home .highlight-card:hover {
  transform: translateY(-6px) rotate(-1deg);
  box-shadow: var(--shadow-md);
}

.page-home .highlight-card .data-num {
  display: block;
  font-size: 2.2rem;
  line-height: 1;
  color: var(--color-orange);
  margin-bottom: 14px;
}

.page-home .highlight-card:nth-child(even) .data-num {
  color: var(--color-teal);
}

.page-home .highlight-card h3 {
  font-size: 0.98rem;
  font-weight: 600;
  color: var(--color-white);
  line-height: 1.55;
  margin: 0;
}

/* ---------- 收尾常驻入口 ---------- */
.page-home .outro-section {
  position: relative;
  background: var(--color-navy-deep);
  color: var(--color-white);
  padding: 68px 0 76px;
  overflow: hidden;
}

.page-home .outro-section::before {
  content: "";
  position: absolute;
  top: -120px;
  right: -80px;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 107, 53, 0.24), transparent 70%);
}

.page-home .outro-section::after {
  content: "";
  position: absolute;
  bottom: -160px;
  left: -60px;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 194, 168, 0.2), transparent 70%);
}

.page-home .outro-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 820px;
  margin: 0 auto;
}

.page-home .outro-inner .section-kicker {
  justify-content: center;
}

.page-home .outro-title {
  font-family: var(--font-headline);
  font-style: italic;
  font-size: clamp(1.8rem, 3.6vw, 3rem);
  line-height: 1.14;
  color: var(--color-white);
  margin: 0 0 16px;
}

.page-home .outro-desc {
  color: var(--color-slate);
  font-size: 1rem;
  line-height: 1.75;
  max-width: 640px;
  margin: 0 auto;
}

.page-home .outro-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 28px;
}

/* ---------- 响应式增强 ---------- */
@media (min-width: 768px) {
  .page-home .home-hero {
    min-height: 700px;
  }

  .page-home .update-card:last-child {
    grid-column: span 2;
  }

  .page-home .update-visual {
    grid-template-columns: 1fr 0.8fr;
    padding: 32px;
  }

  .page-home .update-visual img {
    height: 280px;
  }

  .page-home .news-photo img {
    height: 320px;
  }

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

  .page-home .index-visual img {
    height: 460px;
  }
}

@media (min-width: 992px) {
  .page-home .hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.08fr);
    gap: clamp(2rem, 4vw, 4.5rem);
    align-items: center;
    padding-top: calc(var(--header-height) + 56px);
    padding-bottom: 68px;
  }

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

  .page-home .update-card:last-child {
    grid-column: auto;
  }

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

  .page-home .news-photo img {
    height: 380px;
  }

  .page-home .index-split {
    grid-template-columns: 1fr 1fr;
    gap: 56px;
  }

  .page-home .index-visual img {
    height: 520px;
  }

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

  .page-home .quick-link {
    padding: 8px 16px;
  }
}

@media (max-width: 600px) {
  .page-home .quick-entry-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .page-home .quick-entry-links {
    width: 100%;
  }

  .page-home .quick-link {
    flex: 1 1 40%;
    text-align: center;
  }

  .page-home .hero-feed {
    padding-left: 0;
  }

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