/* 盈嘉体育首页 — 页面专属样式 */
.page-home .home-hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  padding: 0;
  overflow: hidden;
  background: var(--c-ink);
  color: var(--c-white);
}

.page-home .home-hero__bg {
  position: absolute;
  inset: 0;
  margin: 0;
  z-index: 0;
}

.page-home .home-hero__bg img {
  width: 100%;
  height: 100%;
  max-width: 100%;
  object-fit: cover;
  object-position: center 38%;
}

.page-home .home-hero__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg,
      rgba(62, 47, 35, 0.94) 0%,
      rgba(62, 47, 35, 0.82) 45%,
      rgba(27, 107, 176, 0.58) 100%);
  z-index: 1;
}

.page-home .home-hero .container {
  position: relative;
  z-index: 2;
  width: 100%;
  padding-top: clamp(64px, 12vh, 120px);
  padding-bottom: clamp(64px, 12vh, 120px);
}

.page-home .home-hero__grid {
  display: grid;
  gap: 44px;
  align-items: center;
}

.page-home .home-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
  padding: 7px 14px;
  background: rgba(242, 109, 33, 0.16);
  border-left: 3px solid var(--c-orange);
  color: #fcd9c2;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.page-home .home-hero__title {
  margin: 0 0 24px;
  font-size: clamp(2.1rem, 6vw, 4.2rem);
  font-weight: 900;
  line-height: 1.12;
  color: var(--c-white);
  max-width: 11em;
}

.page-home .home-hero__title-mark {
  color: var(--c-orange);
}

.page-home .home-hero__title-sub {
  display: block;
  color: var(--c-gold);
}

.page-home .home-hero__lead {
  position: relative;
  margin: 0 0 32px;
  padding-left: 18px;
  border-left: 2px solid var(--c-orange);
  max-width: 46em;
  font-size: clamp(0.95rem, 1.6vw, 1.08rem);
  line-height: 1.8;
  color: rgba(248, 244, 232, 0.88);
}

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

.page-home .home-hero__actions .btn--outline {
  background: rgba(248, 244, 232, 0.08);
  border-color: rgba(248, 244, 232, 0.7);
  color: var(--c-white);
}

.page-home .home-hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  padding-top: 16px;
  border-top: 1px solid rgba(248, 244, 232, 0.18);
  font-size: 0.82rem;
  color: rgba(248, 244, 232, 0.72);
}

.page-home .home-hero__index {
  padding: 24px 20px;
  background: rgba(62, 47, 35, 0.55);
  border: 1px solid rgba(200, 162, 75, 0.4);
  backdrop-filter: blur(8px);
}

.page-home .home-hero__index-title {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 16px;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--c-gold);
}

.page-home .home-hero__index-title::after {
  content: "";
  flex: 1;
  height: 1px;
  background: rgba(200, 162, 75, 0.35);
}

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

.page-home .home-hero__index-list a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 6px;
  color: rgba(248, 244, 232, 0.9);
  font-size: 0.85rem;
  text-decoration: none;
  border-bottom: 1px solid rgba(248, 244, 232, 0.1);
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.page-home .home-hero__index-list a:hover {
  background: rgba(242, 109, 33, 0.18);
  color: var(--c-white);
  transform: translateX(3px);
}

.page-home .home-hero__index-list span {
  font-family: var(--font-num);
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--c-orange);
}

.page-home .home-stats {
  padding: var(--section-space) 0;
  background: var(--c-cream);
  position: relative;
}

.page-home .home-stats::before {
  content: "";
  display: block;
  height: 4px;
  background: repeating-linear-gradient(90deg, var(--c-gold) 0 24px, transparent 24px 48px);
}

.page-home .home-section-lead {
  max-width: 46em;
  margin: 12px 0 0;
  font-size: 1rem;
  line-height: 1.75;
  color: rgba(62, 47, 35, 0.78);
}

.page-home .home-stats__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 36px 0 40px;
}

.page-home .stat-card {
  position: relative;
  background: var(--c-white);
  border: 1px solid rgba(62, 47, 35, 0.1);
  padding: 24px 20px 20px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.page-home .stat-card::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 20px;
  width: 36px;
  height: 3px;
  background: var(--c-orange);
}

.page-home .stat-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 28px rgba(62, 47, 35, 0.1);
}

.page-home .stat-card__num {
  display: block;
  font-family: var(--font-num);
  font-size: clamp(2rem, 5vw, 3.4rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--c-blue);
}

.page-home .stat-card__label {
  display: block;
  margin-top: 10px;
  font-size: 0.86rem;
  font-weight: 700;
  color: var(--c-ink);
}

.page-home .home-stats__img {
  aspect-ratio: 3 / 2;
  max-width: 720px;
  margin: 0 auto;
  background: var(--c-lake);
  border: 1px solid rgba(62, 47, 35, 0.08);
  overflow: hidden;
}

.page-home .home-stats__img img,
.page-home .home-v4__phone-img img,
.page-home .home-news__img img {
  width: 100%;
  height: 100%;
  max-width: 100%;
  object-fit: cover;
}

.page-home .home-tags {
  padding: var(--section-space) 0;
  background: var(--c-white);
}

.page-home .home-tags__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 32px;
}

.page-home .tag-card {
  position: relative;
  background: var(--c-cream);
  border: 1px solid rgba(200, 162, 75, 0.3);
  border-left: 3px solid var(--c-gold);
  padding: 18px 18px 16px;
  transition: background 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.page-home .tag-card:hover {
  background: var(--c-white);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(27, 107, 176, 0.1);
  border-left-color: var(--c-orange);
}

.page-home .tag-card__header {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 6px;
}

.page-home .tag-card__index {
  font-family: var(--font-num);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--c-blue);
}

.page-home .tag-card__title {
  margin: 0;
  font-size: 1.02rem;
  font-weight: 700;
  color: var(--c-ink);
}

.page-home .tag-card__desc {
  margin: 0;
  font-size: 0.86rem;
  line-height: 1.65;
  color: rgba(62, 47, 35, 0.72);
}

.page-home .tag-card::after {
  content: "查看";
  position: absolute;
  top: 14px;
  right: 14px;
  padding: 2px 8px;
  border: 1px solid var(--c-orange);
  color: var(--c-orange);
  font-size: 0.68rem;
  font-weight: 700;
  opacity: 0;
  transform: translateY(4px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.page-home .tag-card:hover::after {
  opacity: 1;
  transform: translateY(0);
}

.page-home .home-v4 {
  position: relative;
  padding: var(--section-space) 0;
  background: var(--c-ink);
  color: var(--c-cream);
  overflow: hidden;
}

.page-home .home-v4::before {
  content: "";
  position: absolute;
  right: -60px;
  top: -60px;
  width: 220px;
  height: 220px;
  background: repeating-linear-gradient(45deg, transparent 0 10px, rgba(200, 162, 75, 0.16) 10px 12px);
}

.page-home .home-v4 .section-title,
.page-home .home-v4 .section-index {
  color: var(--c-cream);
}

.page-home .home-v4__grid {
  display: grid;
  gap: 44px;
  align-items: center;
  margin-top: 36px;
}

.page-home .home-v4__points {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 30px;
}

.page-home .home-v4__points h3 {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 6px;
  font-size: 1.12rem;
  font-weight: 700;
  color: var(--c-gold);
}

.page-home .home-v4__points h3::before {
  content: "";
  flex: 0 0 auto;
  width: 8px;
  height: 8px;
  background: var(--c-orange);
  transform: rotate(45deg);
}

.page-home .home-v4__points p {
  margin: 0;
  font-size: 0.94rem;
  line-height: 1.7;
  color: rgba(248, 244, 232, 0.82);
}

.page-home .home-v4__phone {
  position: relative;
  max-width: 320px;
  margin: 0 auto;
}

.page-home .home-v4__phone-img {
  margin: 0;
  padding: 12px;
  background: #14100c;
  border: 2px solid rgba(200, 162, 75, 0.5);
  border-radius: 28px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.4);
  aspect-ratio: 600 / 900;
  overflow: hidden;
}

.page-home .home-v4__phone-img img {
  border-radius: 18px;
}

.page-home .home-v4__phone-caption {
  margin: 14px 0 0;
  text-align: center;
  font-size: 0.82rem;
  color: rgba(248, 244, 232, 0.6);
}

.page-home .home-v4__demo {
  margin-top: 52px;
  padding: 24px;
  background: rgba(248, 244, 232, 0.06);
  border: 1px solid rgba(200, 162, 75, 0.35);
}

.page-home .home-v4__demo-title {
  margin: 0 0 14px;
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--c-gold);
}

.page-home .home-v4__tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}

.page-home .home-v4__tabs .tab-btn {
  background: transparent;
  border: 1px solid rgba(248, 244, 232, 0.3);
  color: rgba(248, 244, 232, 0.85);
  padding: 6px 16px;
  font-size: 0.85rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.page-home .home-v4__tabs .tab-btn:hover,
.page-home .home-v4__tabs .tab-btn[data-active] {
  background: var(--c-orange);
  border-color: var(--c-orange);
  color: var(--c-white);
}

.page-home .home-v4__panel p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.7;
  color: rgba(248, 244, 232, 0.8);
}

.page-home .home-news {
  padding: var(--section-space) 0;
  background: var(--c-cream);
}

.page-home .home-news__grid {
  display: grid;
  gap: 40px;
  align-items: center;
  margin-top: 32px;
}

.page-home .home-news__list {
  display: grid;
  gap: 0;
}

.page-home .news-row {
  position: relative;
  padding: 22px 0;
  border-bottom: 1px solid rgba(62, 47, 35, 0.12);
}

.page-home .news-row:first-child {
  border-top: 1px solid rgba(62, 47, 35, 0.12);
}

.page-home .news-row::before {
  content: "";
  position: absolute;
  left: -12px;
  top: 24px;
  width: 4px;
  height: 0;
  background: var(--c-orange);
  transition: height 0.25s ease;
}

.page-home .news-row:hover::before {
  height: calc(100% - 48px);
}

.page-home .news-row .tag {
  display: inline-block;
  margin-bottom: 8px;
}

.page-home .news-row h3 {
  margin: 0 0 6px;
  font-size: 1.04rem;
  line-height: 1.45;
  font-weight: 700;
}

.page-home .news-row h3 a {
  color: var(--c-ink);
  text-decoration: none;
  transition: color 0.2s ease;
}

.page-home .news-row h3 a:hover {
  color: var(--c-blue);
}

.page-home .news-row p {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.65;
  color: rgba(62, 47, 35, 0.72);
}

.page-home .home-news__more {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 24px;
}

.page-home .home-news__img {
  margin: 0;
  background: var(--c-lake);
  border: 1px solid rgba(62, 47, 35, 0.08);
  overflow: hidden;
}

@media (min-width: 640px) {
  .page-home .home-tags__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }
}

@media (min-width: 768px) {
  .page-home .home-stats__grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
  }

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

@media (min-width: 900px) {
  .page-home .home-hero {
    min-height: 88vh;
  }

  .page-home .home-hero__grid {
    grid-template-columns: minmax(0, 7fr) minmax(300px, 4fr);
    gap: 64px;
  }

  .page-home .home-hero__index {
    padding: 32px 28px;
  }
}

@media (min-width: 960px) {
  .page-home .home-v4__grid {
    grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
    gap: 72px;
  }

  .page-home .home-v4__demo {
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 24px;
    align-items: start;
    padding: 32px;
  }

  .page-home .home-v4__demo-title {
    grid-column: 1;
    grid-row: 1;
    margin: 0;
  }

  .page-home .home-v4__tabs {
    grid-column: 1;
    grid-row: 2;
    margin-bottom: 0;
  }

  .page-home .home-v4__panel {
    grid-column: 2;
    grid-row: 1 / span 2;
  }

  .page-home .home-news__grid {
    grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
    gap: 64px;
  }
}

@media (min-width: 1024px) {
  .page-home .home-tags__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
