.page-home {
  --home-red: #C3272B;
  --home-blue: #0B1B3A;
  --home-white: #F5F5F0;
  --home-gold: #E9B872;
  --home-teal: #1A4C54;
  --home-purple: #3E2A5A;
  --home-green: #1F3D2B;
  --home-gray: #E6E6E6;
  --home-muted: #8A9AC0;
  --home-font-heading: "PingFang SC", "Microsoft YaHei", "Heiti SC", "Noto Sans CJK SC", sans-serif;
  --home-font-body: "Songti SC", "Noto Serif CJK SC", "SimSun", "Source Han Serif SC", serif;
  --home-font-index: "PingFang SC", "Microsoft YaHei", "Noto Sans CJK SC", sans-serif;
  background: var(--home-blue);
  color: var(--home-white);
  font-family: var(--home-font-body);
  letter-spacing: 0.02em;
}

.page-home .breadcrumb {
  padding-top: 16px;
  padding-bottom: 0;
  font-size: 14px;
  color: var(--home-muted);
}

.page-home .breadcrumb__current {
  color: var(--home-gold);
}

.page-home .wrap {
  max-width: 1240px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}

.page-home .hero {
  background: linear-gradient(135deg, var(--home-blue) 0%, #142A54 45%, var(--home-purple) 100%);
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 48px 0 0;
}

.page-home .hero::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 55%;
  height: 100%;
  background-image: linear-gradient(rgba(245, 245, 240, 0.05) 1px, transparent 1px), linear-gradient(90deg, rgba(245, 245, 240, 0.05) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

.page-home .hero::after {
  content: "";
  position: absolute;
  bottom: -50px;
  left: -50px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(233, 184, 114, 0.18) 0%, transparent 70%);
  pointer-events: none;
}

.page-home .hero__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
  width: 100%;
}

.page-home .hero__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 28px;
}

.page-home .hero__edition {
  display: inline-block;
  padding: 8px 18px;
  border: 1px solid var(--home-gold);
  border-radius: 100px;
  font-size: 13px;
  letter-spacing: 0.12em;
  color: var(--home-gold);
  text-transform: uppercase;
  margin-bottom: 0;
  font-family: var(--home-font-index);
}

.page-home .hero__title {
  font-size: 28px;
  line-height: 1.35;
  font-weight: 900;
  font-family: var(--home-font-heading);
  margin: 0;
  color: var(--home-white);
}

.page-home .hero__lead {
  font-size: 16px;
  line-height: 1.8;
  color: rgba(245, 245, 240, 0.85);
  max-width: 560px;
  margin: 0;
}

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

.page-home .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 30px;
  border-radius: 100px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
  font-family: var(--home-font-heading);
}

.page-home .btn--primary {
  background: var(--home-red);
  color: var(--home-white);
  box-shadow: 0 8px 30px rgba(195, 39, 43, 0.35);
}

.page-home .btn--primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 36px rgba(195, 39, 43, 0.45);
}

.page-home .btn--outline {
  background: transparent;
  color: var(--home-white);
  border: 1.5px solid rgba(245, 245, 240, 0.5);
}

.page-home .btn--outline:hover {
  border-color: var(--home-white);
  transform: translateY(-3px);
}

.page-home .hero__index {
  list-style: none;
  padding: 0;
  margin: 20px 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 13px;
  font-family: var(--home-font-index);
}

.page-home .hero__index a {
  color: rgba(245, 245, 240, 0.6);
  text-decoration: none;
  letter-spacing: 0.05em;
  transition: color 0.2s ease;
}

.page-home .hero__index a:hover {
  color: var(--home-gold);
}

.page-home .hero__visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-end;
}

.page-home .hero__figure {
  margin: 0;
  position: relative;
  width: 100%;
  max-width: 400px;
}

.page-home .hero__image {
  width: 100%;
  height: auto;
  max-height: 480px;
  object-fit: cover;
  display: block;
  border-radius: 24px 24px 24px 4px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.4);
}

.page-home .hero__svg-ring {
  position: absolute;
  width: 240px;
  height: auto;
  top: 16px;
  right: -20px;
  z-index: 2;
  opacity: 0.8;
  animation: page-home-ring 36s linear infinite;
}

@keyframes page-home-ring {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.page-home .hero__caption {
  margin-top: 14px;
  text-align: center;
  font-size: 14px;
  color: rgba(245, 245, 240, 0.5);
  letter-spacing: 0.15em;
  font-family: var(--home-font-index);
}

.page-home .section {
  margin-bottom: 32px;
}

.page-home .section__kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--home-gold);
  margin: 0 0 12px;
  font-family: var(--home-font-index);
  font-weight: 600;
}

.page-home .section__kicker::before {
  content: "◆";
  font-size: 8px;
  color: var(--home-red);
}

.page-home .section__title {
  font-size: 26px;
  line-height: 1.3;
  font-weight: 900;
  font-family: var(--home-font-heading);
  margin: 0;
  color: var(--home-white);
}

.page-home .features {
  background: var(--home-white);
  color: #15305B;
  padding: 56px 0 72px;
  border-radius: 36px 36px 0 0;
  position: relative;
  z-index: 3;
}

.page-home .features .section__title {
  color: var(--home-blue);
}

.page-home .features .section__kicker {
  color: var(--home-red);
}

.page-home .features__header {
  display: flex;
  flex-direction: column;
  margin-bottom: 40px;
}

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

.page-home .feature-card {
  background: #FCFCF7;
  border: 1px solid rgba(11, 27, 58, 0.08);
  border-radius: 16px;
  padding: 28px 24px;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-home .feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(11, 27, 58, 0.1);
}

.page-home .feature-card__num {
  font-size: 36px;
  font-weight: 900;
  font-family: var(--home-font-heading);
  color: rgba(11, 27, 58, 0.12);
  line-height: 1;
  display: block;
  margin-bottom: 16px;
}

.page-home .feature-card__title {
  font-size: 19px;
  font-weight: 800;
  font-family: var(--home-font-heading);
  margin: 0 0 12px;
  color: var(--home-blue);
}

.page-home .feature-card__title a {
  color: inherit;
  text-decoration: none;
}

.page-home .feature-card__title a:hover {
  color: var(--home-red);
}

.page-home .feature-card__text {
  font-size: 15px;
  line-height: 1.75;
  color: rgba(21, 48, 91, 0.8);
  margin: 0 0 16px;
}

.page-home .feature-card__note {
  font-size: 12px;
  letter-spacing: 0.1em;
  color: var(--home-red);
  font-family: var(--home-font-index);
  border-top: 1px solid rgba(11, 27, 58, 0.06);
  padding-top: 12px;
}

.page-home .features__figure {
  margin: 48px 0 0;
}

.page-home .features__figure img {
  width: 100%;
  height: auto;
  border-radius: 16px;
  display: block;
  box-shadow: 0 12px 32px rgba(11, 27, 58, 0.12);
}

.page-home .features__figure figcaption {
  font-size: 13px;
  color: rgba(21, 48, 91, 0.7);
  margin-top: 12px;
  text-align: center;
  font-family: var(--home-font-index);
}

.page-home .reports {
  background: var(--home-purple);
  padding: 72px 0;
  position: relative;
}

.page-home .reports::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(90deg, var(--home-gold) 0%, var(--home-red) 50%, var(--home-teal) 100%);
  opacity: 0.7;
}

.page-home .reports .section__title {
  color: var(--home-white);
}

.page-home .reports .section__kicker {
  color: var(--home-gold);
}

.page-home .reports__header {
  margin-bottom: 32px;
}

.page-home .reports__layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
}

.page-home .filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
}

.page-home .filter-bar__btn {
  background: rgba(245, 245, 240, 0.08);
  border: 1px solid rgba(245, 245, 240, 0.25);
  color: rgba(245, 245, 240, 0.75);
  padding: 9px 20px;
  border-radius: 100px;
  font-size: 14px;
  cursor: pointer;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
  font-family: var(--home-font-index);
}

.page-home .filter-bar__btn:hover {
  border-color: var(--home-gold);
  color: var(--home-gold);
}

.page-home .filter-bar__btn.is-active {
  background: var(--home-gold);
  color: var(--home-purple);
  border-color: var(--home-gold);
  font-weight: 600;
}

.page-home .filter-bar__btn[aria-pressed="true"] {
  background: var(--home-gold);
  color: var(--home-purple);
  border-color: var(--home-gold);
  font-weight: 600;
}

.page-home .reports__list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.page-home .report-item {
  background: rgba(245, 245, 240, 0.07);
  border-radius: 14px;
  padding: 22px 22px;
  border-left: 4px solid var(--home-red);
  transition: background 0.25s ease, transform 0.25s ease;
  display: block;
}

.page-home .report-item:hover {
  background: rgba(245, 245, 240, 0.12);
  transform: translateX(6px);
}

.page-home .report-item__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-bottom: 10px;
  font-family: var(--home-font-index);
}

.page-home .report-item__tag {
  font-size: 12px;
  padding: 4px 12px;
  border-radius: 100px;
  background: var(--home-red);
  color: var(--home-white);
  letter-spacing: 0.08em;
}

.page-home .report-item__datestamp {
  font-size: 12px;
  color: rgba(245, 245, 240, 0.55);
  letter-spacing: 0.06em;
}

.page-home .report-item__title {
  font-size: 18px;
  font-weight: 800;
  font-family: var(--home-font-heading);
  margin: 0 0 8px;
  color: var(--home-white);
}

.page-home .report-item__excerpt {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(245, 245, 240, 0.7);
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.page-home .aside-card {
  background: linear-gradient(150deg, var(--home-teal) 0%, #143A42 100%);
  border-radius: 16px;
  padding: 26px;
  border: 1px solid rgba(233, 184, 114, 0.25);
}

.page-home .aside-card__title {
  font-size: 18px;
  font-weight: 800;
  font-family: var(--home-font-heading);
  color: var(--home-gold);
  margin: 0 0 12px;
}

.page-home .aside-card p {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(245, 245, 240, 0.82);
  margin: 0 0 16px;
}

.page-home .aside-card__link {
  color: var(--home-white);
  text-decoration: none;
  font-size: 14px;
  font-family: var(--home-font-index);
  font-weight: 600;
}

.page-home .aside-card__link:hover {
  color: var(--home-gold);
}

.page-home .teams {
  background: var(--home-white);
  color: var(--home-blue);
  padding: 72px 0;
}

.page-home .teams .section__title {
  color: var(--home-blue);
}

.page-home .teams .section__kicker {
  color: var(--home-red);
}

.page-home .teams__header {
  margin-bottom: 36px;
}

.page-home .teams__layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
}

.page-home .teams__lead {
  font-size: 17px;
  line-height: 1.8;
  margin: 0 0 20px;
  color: rgba(11, 27, 58, 0.85);
}

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

.page-home .teams__points li {
  font-size: 15px;
  line-height: 1.6;
  padding-left: 24px;
  position: relative;
  color: rgba(11, 27, 58, 0.75);
}

.page-home .teams__points li::before {
  content: "◈";
  position: absolute;
  left: 0;
  color: var(--home-red);
  font-size: 14px;
}

.page-home .btn--gold {
  background: var(--home-gold);
  color: var(--home-blue);
  font-weight: 700;
  box-shadow: 0 8px 24px rgba(233, 184, 114, 0.3);
}

.page-home .btn--gold:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 32px rgba(233, 184, 114, 0.4);
}

.page-home .teams__grid {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.page-home .team-chip {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #FCFCF7;
  border: 1px solid rgba(11, 27, 58, 0.1);
  border-radius: 12px;
  padding: 14px 16px;
  font-size: 14px;
  font-weight: 600;
  font-family: var(--home-font-heading);
  color: var(--home-blue);
  transition: transform 0.2s ease, border-color 0.2s ease;
  cursor: default;
}

.page-home .team-chip:hover {
  transform: translateY(-3px);
  border-color: var(--home-red);
}

.page-home .team-chip__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}

.page-home .team-chip__dot--red {
  background: #C3272B;
}

.page-home .team-chip__dot--green {
  background: #1F8A3D;
}

.page-home .team-chip__dot--gold {
  background: #E9B872;
}

.page-home .team-chip__dot--blue {
  background: #2E6FD8;
}

.page-home .team-chip__dot--purple {
  background: #7B4FA8;
}

.page-home .team-chip__dot--teal {
  background: #1A4C54;
}

.page-home .teams__figure img {
  width: 100%;
  height: auto;
  border-radius: 16px;
  display: block;
  box-shadow: 0 12px 28px rgba(11, 27, 58, 0.12);
}

.page-home .stats {
  background: linear-gradient(175deg, var(--home-teal) 0%, #123036 100%);
  padding: 72px 0;
  position: relative;
  overflow: hidden;
}

.page-home .stats::before {
  content: "";
  position: absolute;
  top: -40px;
  right: -40px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(233, 184, 114, 0.15) 0%, transparent 65%);
}

.page-home .stats .section__title {
  color: var(--home-white);
}

.page-home .stats__header {
  margin-bottom: 36px;
}

.page-home .stats__layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
}

.page-home .stats__figure img {
  width: 100%;
  height: auto;
  border-radius: 16px;
  display: block;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.3);
}

.page-home .stats__figure figcaption {
  font-size: 13px;
  margin-top: 12px;
  color: rgba(245, 245, 240, 0.6);
  text-align: center;
  font-family: var(--home-font-index);
}

.page-home .stats__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.page-home .stat-item {
  background: rgba(245, 245, 240, 0.06);
  border: 1px solid rgba(245, 245, 240, 0.1);
  border-radius: 14px;
  padding: 20px 16px;
  text-align: center;
}

.page-home .stat-item__num {
  font-size: 28px;
  font-weight: 900;
  font-family: var(--home-font-heading);
  color: var(--home-gold);
  line-height: 1.2;
  margin: 0 0 8px;
}

.page-home .stat-item__label {
  font-size: 13px;
  line-height: 1.5;
  color: rgba(245, 245, 240, 0.7);
  margin: 0;
  font-family: var(--home-font-index);
}

.page-home .stats__footer {
  margin-top: 36px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
}

.page-home .stats__footer p {
  font-size: 15px;
  line-height: 1.8;
  color: rgba(245, 245, 240, 0.72);
  margin: 0;
  max-width: 700px;
}

.page-home .stats__footer a {
  color: var(--home-gold);
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  font-family: var(--home-font-index);
}

.page-home .stats__footer a:hover {
  text-decoration: underline;
}

.page-home .pre-footer {
  background: var(--home-blue);
  padding: 56px 0 64px;
}

.page-home .pre-footer__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
}

.page-home .pre-footer__item {
  background: rgba(245, 245, 240, 0.04);
  border-radius: 16px;
  padding: 28px;
  border-top: 2px solid var(--home-red);
  transition: background 0.25s ease;
}

.page-home .pre-footer__item:hover {
  background: rgba(245, 245, 240, 0.08);
}

.page-home .pre-footer__label {
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--home-gold);
  font-family: var(--home-font-index);
  margin: 0 0 10px;
  font-weight: 600;
}

.page-home .pre-footer__text {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(245, 245, 240, 0.75);
  margin: 0 0 14px;
}

.page-home .pre-footer__item a {
  color: var(--home-white);
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  font-family: var(--home-font-index);
}

.page-home .pre-footer__item a:hover {
  color: var(--home-gold);
}

@media (min-width: 360px) {
  .page-home .hero__title {
    font-size: 32px;
  }

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

@media (min-width: 640px) {
  .page-home .stat-item__num {
    font-size: 34px;
  }

  .page-home .stat-item__label {
    font-size: 14px;
  }

  .page-home .stats__grid {
    gap: 16px;
  }
}

@media (min-width: 900px) {
  .page-home .wrap {
    padding-left: 32px;
    padding-right: 32px;
  }

  .page-home .hero__inner {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 24px;
  }

  .page-home .hero__title {
    font-size: 40px;
    line-height: 1.28;
  }

  .page-home .hero__lead {
    font-size: 18px;
  }

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

  .page-home .feature-card {
    padding: 30px 24px;
  }

  .page-home .reports__layout {
    grid-template-columns: 2fr 1fr;
    gap: 44px;
  }

  .page-home .teams__layout {
    grid-template-columns: 1fr 1fr;
    gap: 44px;
  }

  .page-home .teams__figure {
    grid-column: 1 / -1;
    max-width: 500px;
    margin: 0 auto;
  }

  .page-home .stats__layout {
    grid-template-columns: 1.2fr 1fr;
    gap: 48px;
    align-items: center;
  }

  .page-home .stats__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .page-home .stats__footer {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  .page-home .pre-footer__inner {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }

  .page-home .stat-item__num {
    font-size: 38px;
  }
}

@media (min-width: 1200px) {
  .page-home .hero__title {
    font-size: 48px;
  }

  .page-home .hero__content {
    gap: 32px;
  }

  .page-home .teams__layout {
    grid-template-columns: 1fr 1fr 0.7fr;
    align-items: start;
  }

  .page-home .teams__figure {
    grid-column: auto;
    margin: 0;
  }
}
