.page-home {
  --home-deep: #081429;
  --home-sky: #0B1D3A;
  --home-orange: #FF6B1A;
  --home-gold: #FFD700;
  --home-silver: #C0C0C0;
  --home-panel-shadow: 0 18px 44px rgba(8, 20, 41, 0.35);
  --home-font-head: 'Impact', 'Arial Black', 'Microsoft YaHei', sans-serif;
  --home-font-body: 'Roboto', 'Helvetica Neue', 'PingFang SC', 'Microsoft YaHei', sans-serif;
  background: var(--c-light);
  color: var(--c-text);
}

.page-home img {
  max-width: 100%;
  height: auto;
}

.page-home .home-hero {
  position: relative;
  overflow: hidden;
  color: var(--c-white);
  background:
    radial-gradient(circle at 78% 30%, rgba(255, 107, 26, 0.22), transparent 34%),
    radial-gradient(circle at 40% 100%, rgba(255, 215, 0, 0.06), transparent 40%),
    linear-gradient(140deg, var(--c-primary) 0%, var(--c-dark) 60%, #0A1730 100%);
}

.page-home .home-hero::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 46%;
  background: linear-gradient(130deg, transparent 22%, rgba(192, 192, 192, 0.12) 46%, rgba(255, 107, 26, 0.2) 100%);
  clip-path: polygon(18% 0, 100% 0, 100% 100%, 0 100%);
  pointer-events: none;
}

.page-home .home-hero__container {
  position: relative;
  z-index: 1;
}

.page-home .home-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 2.25rem;
  padding: 2.75rem 0 3rem;
}

.page-home .home-hero .breadcrumb__current {
  color: rgba(245, 247, 250, 0.72);
  font-size: 0.825rem;
  letter-spacing: 0.06em;
}

.page-home .home-hero__kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin: 1rem 0 0.5rem;
  font-family: var(--home-font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  color: var(--home-gold);
  text-transform: uppercase;
}

.page-home .home-hero__title {
  font-family: var(--home-font-head);
  font-size: clamp(2rem, 5vw, 3.4rem);
  line-height: 1.12;
  margin: 0.5rem 0 1rem;
  color: var(--c-white);
  letter-spacing: 0.01em;
}

.page-home .home-hero__lead {
  margin: 0 0 1.5rem;
  max-width: 32em;
  font-size: 1rem;
  line-height: 1.8;
  color: rgba(245, 247, 250, 0.82);
}

.page-home .home-hero__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem 1rem;
  margin-bottom: 0.5rem;
}

.page-home .home-hero__cta {
  position: relative;
  min-width: 9.5rem;
  justify-content: center;
}

.page-home .home-hero__cta-mark {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1;
  margin-right: 0.4rem;
}

.page-home .home-hero__hint {
  font-size: 0.875rem;
  color: rgba(245, 247, 250, 0.62);
}

.page-home .home-hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.25rem;
  margin-top: 1.5rem;
  font-size: 0.8rem;
  color: rgba(245, 247, 250, 0.55);
}

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

.page-home .home-hero__panel {
  position: relative;
  overflow: hidden;
  border-radius: 1rem;
  box-shadow: var(--home-panel-shadow);
  border: 1px solid rgba(192, 192, 192, 0.24);
  background: var(--home-deep);
}

.page-home .home-hero__panel-bg {
  display: block;
  width: 100%;
  object-fit: cover;
}

.page-home .home-hero__panel-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11, 29, 58, 0.2), rgba(8, 20, 41, 0.78) 88%);
}

.page-home .home-hero__panel-meta {
  position: absolute;
  top: 1rem;
  left: 1rem;
  display: inline-flex;
  gap: 0.75rem;
  padding: 0.4rem 0.7rem;
  font-size: 0.75rem;
  color: var(--c-white);
  background: rgba(8, 20, 41, 0.55);
  border: 1px solid rgba(192, 192, 192, 0.3);
  border-radius: 999px;
  backdrop-filter: blur(4px);
}

.page-home .home-hero__stats {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 1rem;
}

.page-home .home-hero__stat {
  padding: 0.9rem 1rem 0.85rem;
  border: 1px solid rgba(192, 192, 192, 0.28);
  border-radius: 0.75rem;
  background: rgba(8, 20, 41, 0.72);
  backdrop-filter: blur(4px);
  color: var(--c-white);
}

.page-home .home-hero__stat .stat__label {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 0.78rem;
  color: rgba(245, 247, 250, 0.72);
}

.page-home .home-hero__stat .stat__value {
  font-family: var(--home-font-head);
  font-size: 1.75rem;
  line-height: 1;
  color: var(--c-white);
}

.page-home .home-hero__stat--gold {
  border-color: rgba(255, 215, 0, 0.4);
}

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

.page-home .home-favorite {
  position: relative;
  background: var(--c-white);
  border-bottom: 1px solid var(--c-border);
}

.page-home .home-favorite__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem 2rem;
  padding: 2.75rem 0;
}

.page-home .home-favorite__intro {
  max-width: 30em;
}

.page-home .home-favorite__title {
  font-family: var(--home-font-head);
  font-size: 1.85rem;
  line-height: 1.2;
  margin: 0.35rem 0 0.75rem;
  color: var(--c-primary);
}

.page-home .home-favorite__desc {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--c-text-2);
}

.page-home .home-favorite__steps {
  display: grid;
  gap: 0.75rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.page-home .home-favorite__step {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.9rem 1rem;
  border: 1px solid var(--c-border);
  border-left: 3px solid var(--c-accent);
  border-radius: 0.5rem;
  background: var(--c-light);
}

.page-home .home-favorite__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--c-primary);
  color: var(--c-white);
  font-family: var(--home-font-head);
  font-size: 0.9rem;
}

.page-home .home-favorite__text {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--c-text);
}

.page-home .home-modules {
  background: var(--c-light);
}

.page-home .home-modules__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

.page-home .home-module {
  background: var(--c-white);
  border: 1px solid var(--c-border);
  border-top: 3px solid var(--c-accent);
  box-shadow: var(--shadow-card);
  border-radius: 0.75rem;
  height: 100%;
}

.page-home .home-module .board__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}

.page-home .home-module .board__title {
  margin: 0;
  font-size: 1.2rem;
  color: var(--c-primary);
}

.page-home .home-module .board__summary {
  margin-bottom: 1rem;
  font-size: 0.9rem;
  line-height: 1.65;
  color: var(--c-text-2);
}

.page-home .home-module__list {
  margin: 0 0 1rem;
  padding: 0;
  list-style: none;
}

.page-home .home-module__list li {
  position: relative;
  padding: 0.4rem 0 0.4rem 1.1rem;
  border-bottom: 1px dashed var(--c-border);
  font-size: 0.9rem;
}

.page-home .home-module__list li:last-child {
  border-bottom: 0;
}

.page-home .home-module__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.85rem;
  width: 0.4rem;
  height: 0.4rem;
  background: var(--c-accent);
  transform: rotate(45deg);
}

.page-home .home-module__list a {
  color: var(--c-text);
  text-decoration: none;
  transition: color var(--ease);
}

.page-home .home-module__list a:hover {
  color: var(--c-accent);
}

.page-home .home-modules__art-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  align-items: center;
  margin-top: 1.75rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--c-border);
}

.page-home .home-modules__art {
  width: 100%;
  max-width: 320px;
  height: auto;
  border-radius: 0.75rem;
  object-fit: cover;
  border: 1px solid var(--c-border);
}

.page-home .home-modules__art-caption {
  margin: 0;
  font-size: 0.875rem;
  color: var(--c-text-2);
  line-height: 1.6;
}

.page-home .home-navsection {
  background:
    radial-gradient(circle at 80% 10%, rgba(255, 107, 26, 0.14), transparent 32%),
    linear-gradient(160deg, var(--c-primary) 0%, var(--c-dark) 70%);
  color: var(--c-white);
}

.page-home .home-navsection__container {
  padding: 3rem 0;
}

.page-home .home-navsection .section-head--on-dark .section-head__eyebrow {
  color: var(--home-gold);
}

.page-home .home-navsection .section-head--on-dark .section-head__text {
  color: var(--c-white);
}

.page-home .home-navsection__bar {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.page-home .home-navsection__item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.1rem;
  text-decoration: none;
  border: 1px solid rgba(192, 192, 192, 0.28);
  border-left: 3px solid var(--c-accent);
  border-radius: 0.5rem;
  background: rgba(8, 20, 41, 0.55);
  transition: transform var(--ease), border-color var(--ease), background var(--ease);
}

.page-home .home-navsection__item:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 107, 26, 0.7);
  background: rgba(11, 29, 58, 0.8);
}

.page-home .home-navsection__item:focus-visible {
  outline: 2px solid var(--home-gold);
  outline-offset: 2px;
}

.page-home .home-navsection__index {
  font-family: var(--home-font-head);
  font-size: 1.4rem;
  color: var(--c-accent);
}

.page-home .home-navsection__body {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.page-home .home-navsection__name {
  font-size: 1rem;
  font-weight: 700;
  color: var(--c-white);
}

.page-home .home-navsection__desc {
  font-size: 0.8rem;
  color: rgba(245, 247, 250, 0.62);
}

.page-home .home-navsection__footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem 1.5rem;
  margin-top: 1.5rem;
}

.page-home .home-navsection__art {
  width: 64px;
  height: 64px;
  object-fit: cover;
  border-radius: 0.5rem;
  border: 1px solid rgba(192, 192, 192, 0.3);
}

.page-home .home-navsection__hint {
  margin: 0;
  flex: 1;
  font-size: 0.82rem;
  line-height: 1.6;
  color: rgba(245, 247, 250, 0.62);
}

.page-home .home-news {
  background: var(--c-light);
}

.page-home .home-news__list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin-top: 1.5rem;
}

.page-home .home-news__item {
  padding: 1.25rem;
  background: var(--c-white);
  border: 1px solid var(--c-border);
  border-radius: 0.75rem;
  box-shadow: 0 6px 18px rgba(8, 20, 41, 0.06);
}

.page-home .home-news__head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.4rem 0.75rem;
  margin-bottom: 0.65rem;
}

.page-home .home-news__time {
  font-size: 0.8rem;
  color: var(--c-text-2);
}

.page-home .home-news__title {
  margin: 0 0 0.4rem;
  font-size: 1.05rem;
  line-height: 1.45;
  color: var(--c-text);
}

.page-home .home-news__title a {
  color: inherit;
  text-decoration: none;
  transition: color var(--ease);
}

.page-home .home-news__title a:hover {
  color: var(--c-accent);
}

.page-home .home-news__desc {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.65;
  color: var(--c-text-2);
}

.page-home .home-news__export-panel {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem 1.5rem;
  justify-content: space-between;
  margin-top: 1.75rem;
  padding: 1.25rem;
  background: var(--c-primary);
  border-radius: 0.75rem;
  color: var(--c-white);
}

.page-home .home-news__export-info {
  flex: 1 1 auto;
  min-width: 0;
}

.page-home .home-news__export-note {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.6;
  color: rgba(245, 247, 250, 0.78);
}

.page-home .home-news__export-btn {
  margin-top: 0.75rem;
}

.page-home .home-news__art {
  width: 64px;
  height: 64px;
  object-fit: cover;
  border-radius: 0.5rem;
  border: 1px solid rgba(192, 192, 192, 0.35);
}

.page-home .home-data {
  background:
    radial-gradient(circle at 85% 20%, rgba(255, 107, 26, 0.16), transparent 32%),
    linear-gradient(150deg, var(--c-dark) 0%, var(--c-primary) 90%);
  color: var(--c-white);
}

.page-home .home-data__container {
  padding: 3rem 0;
}

.page-home .home-data .section-head--on-dark .section-head__eyebrow {
  color: var(--home-gold);
}

.page-home .home-data .section-head--on-dark .section-head__text {
  color: var(--c-white);
}

.page-home .home-data__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem 2.5rem;
  margin-top: 1.5rem;
}

.page-home .home-data__chart {
  border: 1px solid rgba(192, 192, 192, 0.26);
  border-radius: 0.75rem;
  background: rgba(8, 20, 41, 0.5);
  padding: 1rem;
}

.page-home .home-data__svg {
  display: block;
  width: 100%;
  height: auto;
}

.page-home .home-data__chart-note {
  margin: 0.75rem 0 0;
  font-size: 0.8rem;
  color: rgba(245, 247, 250, 0.55);
}

.page-home .home-data__stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.page-home .home-data__stat {
  padding: 1rem;
  border: 1px solid rgba(192, 192, 192, 0.24);
  border-radius: 0.5rem;
  background: rgba(8, 20, 41, 0.5);
  color: var(--c-white);
}

.page-home .home-data__stat .stat__value {
  display: block;
  font-family: var(--home-font-head);
  font-size: 1.7rem;
  line-height: 1.1;
  margin-bottom: 0.3rem;
}

.page-home .home-data__stat .stat__label {
  font-size: 0.78rem;
  color: rgba(245, 247, 250, 0.68);
}

.page-home .home-data__stat--gold {
  border-color: rgba(255, 215, 0, 0.44);
}

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

.page-home .home-data__stat--silver .stat__value {
  color: var(--home-silver);
}

.page-home .home-data__stat--primary .stat__value {
  color: var(--c-accent);
}

.page-home .home-data__footnote {
  margin: 1.5rem 0 0;
  font-size: 0.8rem;
  color: rgba(245, 247, 250, 0.5);
}

@media (min-width: 768px) {
  .page-home .home-hero::before {
    width: 56%;
  }

  .page-home .home-hero__grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 44rem);
    align-items: center;
    gap: 3rem;
    padding: 5rem 0 4.5rem;
  }

  .page-home .home-favorite__grid {
    grid-template-columns: minmax(0, 2fr) minmax(0, 3fr);
    gap: 3rem;
    align-items: center;
    padding: 3.5rem 0;
  }

  .page-home .home-modules__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }

  .page-home .home-modules__art-row {
    grid-template-columns: auto 1fr;
    gap: 2rem;
  }

  .page-home .home-navsection__container {
    padding: 4rem 0;
  }

  .page-home .home-navsection__bar {
    grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
    gap: 1rem;
    margin-top: 2rem;
  }

  .page-home .home-navsection__item {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.85rem;
    padding: 1.5rem 1.25rem;
  }

  .page-home .home-navsection__footer {
    margin-top: 2rem;
  }

  .page-home .home-navsection__art {
    width: 120px;
    height: 120px;
  }

  .page-home .home-news__list {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
  }

  .page-home .home-news__export-panel {
    flex-wrap: nowrap;
    margin-top: 2rem;
  }

  .page-home .home-news__export-btn {
    margin-top: 0;
  }

  .page-home .home-data__container {
    padding: 4rem 0;
  }

  .page-home .home-data__grid {
    grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
    align-items: center;
    gap: 2.5rem 3rem;
    margin-top: 2rem;
  }

  .page-home .home-data__stats {
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }
}
