.page-home {
  --home-gap: 16px;
  --home-line: rgba(213, 166, 79, 0.32);
  --home-line-strong: rgba(213, 166, 79, 0.55);
  background: var(--deep-green);
  color: var(--off-white);
}

.page-home .container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}

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

.page-home .home-section-head__kicker {
  display: block;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}

.page-home .home-section-head__title {
  font-family: var(--font-heading);
  font-size: 30px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.02em;
  margin: 0 0 10px;
  color: var(--off-white);
}

.page-home .home-section-head__desc {
  max-width: 680px;
  font-size: 15px;
  line-height: 1.7;
  color: var(--soft-gold);
  margin: 0;
}

.page-home .home-section-head--light .home-section-head__title {
  color: var(--dark-gray);
}

.page-home .home-section-head--light .home-section-head__desc {
  color: var(--mid-gray);
}

.page-home .home-hero {
  padding: 32px 0 56px;
}

.page-home .breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 13px;
  color: var(--mid-gray);
  margin-bottom: 22px;
}

.page-home .breadcrumb a {
  color: var(--gold);
  text-decoration: none;
}

.page-home .breadcrumb a:hover {
  color: var(--neon-green);
}

.page-home .home-hero__title {
  font-family: var(--font-heading);
  font-size: clamp(30px, 5.2vw, 52px);
  line-height: 1.12;
  font-weight: 700;
  letter-spacing: 0.02em;
  margin: 0 0 14px;
}

.page-home .home-hero__lead {
  max-width: 780px;
  font-size: 15px;
  line-height: 1.8;
  color: var(--soft-gold);
  margin: 0 0 28px;
}

.page-home .home-hero__bento {
  display: grid;
  gap: var(--home-gap);
}

@media (min-width: 1024px) {
  .page-home .home-hero__bento {
    grid-template-columns: repeat(12, minmax(0, 1fr));
  }

  .page-home .home-coordboard {
    grid-column: span 8;
    min-height: 620px;
  }

  .page-home .home-side {
    grid-column: span 4;
    display: grid;
    grid-template-rows: auto auto;
    gap: var(--home-gap);
    align-content: start;
  }
}

.page-home .home-coordboard {
  position: relative;
  padding: 24px 20px;
  border: 1px solid var(--home-line);
  background-color: var(--deep-green);
  overflow: hidden;
}

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

.page-home .home-coordboard__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.2;
}

.page-home .home-coordboard__axis {
  position: absolute;
  right: 16px;
  bottom: 16px;
  width: 160px;
  height: 64px;
  z-index: 1;
  opacity: 0.8;
}

.page-home .home-coordboard__head {
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}

.page-home .home-coordboard__kicker {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
}

.page-home .home-coordboard__live {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--soft-gold);
}

.page-home .home-coordboard__title {
  position: relative;
  z-index: 2;
  font-family: var(--font-heading);
  font-size: 28px;
  line-height: 1.3;
  letter-spacing: 0.02em;
  margin: 20px 0 0;
}

.page-home .home-league-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-top: 22px;
}

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

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

.page-home .home-league-block {
  position: relative;
  display: block;
  padding: 14px 14px 12px;
  border-left: 3px solid var(--gold);
  background: rgba(46, 75, 65, 0.55);
  text-decoration: none;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.page-home .home-league-block::after {
  content: "→";
  position: absolute;
  right: 10px;
  top: 10px;
  font-family: var(--font-mono);
  color: var(--gold);
  font-size: 14px;
  opacity: 0;
  transition: opacity 0.2s ease;
}

.page-home .home-league-block:hover {
  border-left-color: var(--neon-green);
  background: rgba(46, 75, 65, 0.9);
}

.page-home .home-league-block:hover::after {
  opacity: 1;
}

.page-home .home-league-block__tag {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  color: var(--neon-green);
}

.page-home .home-league-block__name {
  display: block;
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  line-height: 1.2;
  color: var(--off-white);
  margin-top: 6px;
}

.page-home .home-league-block__num {
  position: absolute;
  right: 26px;
  top: 34px;
  font-family: var(--font-mono);
  font-size: 18px;
  color: var(--gold);
}

.page-home .home-league-block__meta {
  display: block;
  font-size: 13px;
  line-height: 1.5;
  color: var(--soft-gold);
  margin-top: 8px;
  padding-right: 40px;
}

.page-home .home-coordboard__foot {
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  margin-top: 26px;
  padding-top: 16px;
  border-top: 1px solid var(--home-line);
}

.page-home .home-coordboard__trust {
  font-size: 13px;
  color: var(--soft-gold);
  letter-spacing: 0.03em;
}

.page-home .home-side {
  display: grid;
  gap: var(--home-gap);
}

.page-home .home-sync {
  padding: 22px 20px;
  border: 1px solid var(--home-line);
  background: rgba(46, 75, 65, 0.75);
}

.page-home .home-sync__text {
  font-size: 17px;
  line-height: 1.7;
  color: var(--off-white);
  margin: 14px 0 10px;
}

.page-home .home-sync__platforms {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  color: var(--gold);
  margin: 0;
}

.page-home .home-brief {
  padding: 22px 20px;
  border: 1px solid rgba(46, 75, 65, 0.18);
  background: var(--off-white);
  color: var(--dark-gray);
}

.page-home .home-brief__title {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 12px;
}

.page-home .home-brief__list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.page-home .home-brief__list li {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 4px 12px;
  padding: 11px 0;
  border-bottom: 1px solid rgba(20, 29, 26, 0.12);
}

.page-home .home-brief__list li:last-child {
  border-bottom: none;
}

.page-home .home-brief__list a {
  color: var(--dark-gray);
  font-weight: 600;
  text-decoration: none;
}

.page-home .home-brief__list a:hover {
  color: var(--dark-green);
  text-decoration: underline;
}

.page-home .home-brief__list span {
  font-size: 12px;
  color: var(--mid-gray);
  white-space: nowrap;
}

.page-home .home-brief__note {
  font-size: 13px;
  line-height: 1.6;
  color: var(--mid-gray);
  margin: 12px 0 0;
  padding-top: 10px;
  border-top: 1px dashed rgba(46, 75, 65, 0.25);
}

.page-home .home-reports {
  padding: 56px 0;
  background: var(--off-white);
  color: var(--dark-gray);
}

.page-home .home-reports .home-section-head__desc,
.page-home .home-reports .home-section-head__title {
  color: var(--dark-gray);
}

.page-home .home-reports .home-section-head__desc {
  color: var(--mid-gray);
}

.page-home .home-reports__grid {
  display: grid;
  gap: var(--home-gap);
}

@media (min-width: 768px) {
  .page-home .home-reports__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.page-home .home-report-card {
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(46, 75, 65, 0.18);
  background: #fff;
  color: var(--dark-gray);
}

.page-home .home-report-card--featured {
  background: var(--off-white);
}

.page-home .home-report-card--light {
  background: var(--soft-gold);
}

.page-home .home-report-card--dark {
  background: var(--deep-green);
  color: var(--off-white);
  border-color: transparent;
}

.page-home .home-report-card--dark .home-report-card__title {
  color: var(--off-white);
}

.page-home .home-report-card--dark .home-report-card__summary p {
  color: var(--soft-gold);
}

.page-home .home-report-card__media {
  overflow: hidden;
}

.page-home .home-report-card__media img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.page-home .home-report-card__body {
  display: flex;
  flex-direction: column;
  padding: 20px;
  flex: 1;
}

.page-home .home-report-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 12px;
}

.page-home .home-report-card__title {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 700;
  line-height: 1.25;
  margin: 0 0 12px;
}

.page-home .home-report-card__summary p {
  margin: 0 0 8px;
  font-size: 14px;
  line-height: 1.7;
}

.page-home .home-report-card__summary p:last-child {
  margin-bottom: 0;
}

.page-home .home-report-card__summary strong {
  font-family: var(--font-heading);
  font-size: 13px;
  letter-spacing: 0.04em;
  color: var(--dark-green);
  margin-right: 8px;
  white-space: nowrap;
  text-transform: uppercase;
}

.page-home .home-report-card--dark .home-report-card__summary strong {
  color: var(--neon-green);
}

.page-home .home-report-card__extra {
  font-size: 13px;
  line-height: 1.6;
  color: var(--mid-gray);
  padding: 12px;
  border-left: 3px solid var(--gold);
  background: rgba(213, 166, 79, 0.08);
  margin: 0;
}

.page-home .home-report-card--dark .home-report-card__extra {
  color: var(--soft-gold);
  background: rgba(213, 166, 79, 0.12);
}

.page-home .home-report-card .expando {
  margin-top: 14px;
}

.page-home .expando__content {
  display: none;
}

.page-home .expando[data-open] .expando__content {
  display: block;
}

.page-home .expando__button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border: 1px solid rgba(213, 166, 79, 0.45);
  background: transparent;
  color: var(--dark-green);
  cursor: pointer;
  font-size: 13px;
  letter-spacing: 0.05em;
  font-family: var(--font-mono);
  transition: border-color 0.2s ease, color 0.2s ease;
}

.page-home .home-report-card--dark .expando__button {
  color: var(--soft-gold);
  border-color: rgba(184, 247, 42, 0.4);
}

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

.page-home .home-commute {
  padding: 64px 0;
  background: linear-gradient(135deg, #0B241E 0%, #16352C 60%, rgba(184, 247, 42, 0.06) 100%);
}

.page-home .home-commute__wrap {
  display: grid;
  gap: 32px;
  align-items: center;
}

@media (min-width: 768px) {
  .page-home .home-commute__wrap {
    grid-template-columns: 1fr 1fr;
    gap: 48px;
  }
}

.page-home .home-commute__kicker {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}

.page-home .home-commute__title {
  font-family: var(--font-heading);
  font-size: 32px;
  line-height: 1.2;
  color: var(--off-white);
  margin: 0 0 12px;
}

.page-home .home-commute__time {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--off-white);
  margin: 0 0 8px;
  display: flex;
  align-items: baseline;
  gap: 6px;
}

.page-home .home-commute__time strong {
  font-size: 64px;
  line-height: 1;
  color: var(--gold);
}

.page-home .home-commute__time::after {
  content: "单场复盘节奏";
  font-size: 14px;
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--soft-gold);
}

.page-home .home-commute__desc {
  margin: 0 0 22px;
  font-size: 15px;
  line-height: 1.8;
  color: var(--soft-gold);
  max-width: 480px;
}

.page-home .home-commute__figure {
  margin: 0;
  display: flex;
  justify-content: center;
}

.page-home .home-commute__figure img {
  max-width: 100%;
  height: auto;
  display: block;
  border: 1px solid var(--home-line);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
}

.page-home .home-versions {
  padding: 56px 0;
  background: var(--off-white);
  color: var(--dark-gray);
}

.page-home .home-versions__switch {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 24px;
}

.page-home .home-versions__grid {
  display: grid;
  gap: var(--home-gap);
}

@media (min-width: 768px) {
  .page-home .home-versions__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.page-home .home-version-card {
  border: 1px solid rgba(213, 166, 79, 0.35);
  background: var(--deep-green);
  color: var(--off-white);
}

.page-home .home-version-card--standard {
  border-left: 4px solid var(--gold);
}

.page-home .home-version-card--sprint {
  border-left: 4px solid var(--neon-green);
  background: var(--dark-green);
}

.page-home .home-version-card__toggle {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 20px;
  border: none;
  background: transparent;
  color: inherit;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-heading);
}

.page-home .home-version-card__toggle:hover {
  background: rgba(255, 255, 255, 0.04);
}

.page-home .home-version-card__name {
  font-size: 22px;
  font-weight: 700;
}

.page-home .home-version-card__code {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  color: var(--gold);
}

.page-home .home-version-card .expando__content-inner {
  padding: 0 20px 20px;
}

.page-home .home-version-card__list {
  margin: 0 0 18px;
  padding: 0;
  list-style: none;
}

.page-home .home-version-card__list li {
  position: relative;
  padding: 7px 0 7px 20px;
  font-size: 14px;
  line-height: 1.65;
  color: var(--soft-gold);
  border-bottom: 1px solid rgba(213, 166, 79, 0.12);
}

.page-home .home-version-card__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 15px;
  width: 9px;
  height: 9px;
  border-right: 1px solid var(--neon-green);
  border-bottom: 1px solid var(--neon-green);
}

.page-home .home-version-card__list li:last-child {
  border-bottom: none;
}

.page-home .home-versions__figure {
  margin: 32px 0 0;
  text-align: center;
}

.page-home .home-versions__figure img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
  border: 1px solid rgba(46, 75, 65, 0.18);
}

.page-home .home-versions__caption {
  margin-top: 12px;
  font-size: 13px;
  color: var(--mid-gray);
}

.page-home .btn--outline {
  border: 1px solid var(--gold);
  color: var(--gold);
  background: transparent;
}

.page-home .home-versions .btn--outline {
  border-color: var(--dark-green);
  color: var(--dark-green);
}

.page-home [data-reveal] {
  opacity: 1;
  transform: none;
}

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