.page-home {
  background: var(--rk-navy);
  color: var(--rk-paper);
  overflow-x: hidden;
}

.page-home [id] {
  scroll-margin-top: 104px;
}

.page-home a {
  color: inherit;
}

/* ---------- 面包屑 ---------- */
.page-home .home-crumb {
  display: flex;
  gap: 10px;
  padding: 20px 0 10px;
  font-family: var(--rk-mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  color: var(--rk-mist);
}

/* ---------- 首屏 ---------- */
.page-home .home-hero {
  position: relative;
  background: var(--rk-navy);
}

.page-home .home-hero__inner {
  display: grid;
  grid-template-columns: 1fr;
}

.page-home .home-hero__copy {
  padding: clamp(34px, 8vw, 76px) var(--rk-gutter) clamp(30px, 6vw, 56px);
}

.page-home .home-hero__lead {
  margin-top: 22px;
  max-width: 34ch;
  color: var(--rk-mist);
}

.page-home .home-entries {
  list-style: none;
  margin: clamp(30px, 5vw, 52px) 0 0;
  padding: 0;
  border-top: 1px solid var(--rk-grid);
}

.page-home .home-entry {
  display: block;
  position: relative;
  padding: 18px 12px 18px 22px;
  border-bottom: 1px solid var(--rk-grid);
  text-decoration: none;
  transition: background 0.2s var(--rk-ease), border-color 0.2s var(--rk-ease);
}

.page-home .home-entry::before {
  content: "";
  position: absolute;
  left: 0;
  top: 18px;
  bottom: 18px;
  width: 2px;
  background: var(--rk-mint);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.22s var(--rk-ease);
}

.page-home .home-entry:hover,
.page-home .home-entry:focus-visible {
  background: var(--rk-navy-2);
  border-color: var(--rk-mint);
  outline: none;
}

.page-home .home-entry:hover::before,
.page-home .home-entry:focus-visible::before {
  transform: scaleY(1);
}

.page-home .home-entry__num {
  display: block;
  font-size: 12px;
  letter-spacing: 0.14em;
  color: var(--rk-amber);
}

.page-home .home-entry__title {
  display: block;
  margin-top: 8px;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--rk-paper);
  transition: color 0.2s var(--rk-ease);
}

.page-home .home-entry:hover .home-entry__title {
  color: var(--rk-mint-soft);
}

.page-home .home-entry__desc {
  display: block;
  margin-top: 7px;
  font-size: 14px;
  line-height: 1.72;
  color: var(--rk-mist);
  max-width: 38ch;
}

.page-home .home-hero__panel {
  position: relative;
  min-height: 240px;
  overflow: hidden;
  background: var(--rk-navy-2);
}

.page-home .home-hero__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: 100%;
  object-fit: cover;
}

.page-home .home-hero__scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(200deg, rgba(8, 23, 43, 0.12) 0%, rgba(8, 23, 43, 0.86) 68%, var(--rk-navy) 100%);
}

.page-home .home-hero__cap {
  position: absolute;
  left: clamp(18px, 4vw, 34px);
  bottom: clamp(16px, 3vw, 26px);
  margin: 0;
  font-size: 12px;
  letter-spacing: 0.12em;
  color: var(--rk-mint-soft);
}

@media (min-width: 900px) {
  .page-home .home-hero__inner {
    grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
    align-items: stretch;
  }

  .page-home .home-hero__copy {
    padding-left: var(--rk-gutter);
    padding-right: clamp(48px, 7vw, 104px);
  }

  .page-home .home-hero__panel {
    min-height: 620px;
    clip-path: polygon(14% 0, 100% 0, 100% 100%, 0 100%);
  }

  .page-home .home-hero__panel::after {
    content: "";
    position: absolute;
    left: 0;
    top: -3%;
    width: 1px;
    height: 106%;
    background: var(--rk-mint);
    transform-origin: top left;
    transform: skewX(-8deg);
    z-index: 3;
    pointer-events: none;
  }
}

/* ---------- 倒计时带 ---------- */
.page-home .home-count {
  border-top: 1px solid var(--rk-mint);
  border-bottom: 1px solid var(--rk-grid);
  background: linear-gradient(180deg, var(--rk-navy) 0%, var(--rk-indigo) 46%, var(--rk-navy) 100%);
  padding: clamp(48px, 8vw, 100px) 0;
}

.page-home .home-count__head {
  max-width: 640px;
}

.page-home .home-count__body {
  margin-top: clamp(30px, 5vw, 52px);
  display: grid;
  gap: 30px;
}

.page-home .home-count__media {
  margin: 0;
  position: relative;
  overflow: hidden;
  background: var(--rk-navy-2);
}

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

.page-home .home-count__cap {
  padding: 12px 16px;
  font-family: var(--rk-mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  color: var(--rk-mint-soft);
  background: var(--rk-navy-2);
  border-top: 1px solid var(--rk-grid);
}

.page-home .home-count__ticks {
  display: flex;
  align-items: stretch;
  border-top: 1px dashed var(--rk-grid);
  border-bottom: 1px dashed var(--rk-grid);
}

.page-home .home-tick {
  flex: 1 1 0;
  min-width: 0;
  position: relative;
  padding: 15px 4px;
  text-align: center;
  font-family: var(--rk-mono);
  font-size: 11px;
  letter-spacing: 0.04em;
  color: var(--rk-mist);
  text-decoration: none;
  border-right: 1px solid var(--rk-grid);
  transition: color 0.18s var(--rk-ease), background 0.18s var(--rk-ease);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.page-home .home-tick:last-child {
  border-right: 0;
}

.page-home .home-tick::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -1px;
  height: 2px;
  background: var(--rk-mint);
  transform: scaleX(0);
  transition: transform 0.2s var(--rk-ease);
}

.page-home .home-tick:hover,
.page-home .home-tick:focus-visible {
  color: var(--rk-mint-soft);
  background: rgba(23, 210, 166, 0.06);
  outline: none;
}

.page-home .home-tick:hover::before,
.page-home .home-tick:focus-visible::before {
  transform: scaleX(1);
}

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

.page-home .home-count__note {
  padding: 22px 0;
  border-top: 1px solid var(--rk-grid);
}

.page-home .home-count__note h3 {
  margin: 0 0 10px;
  font-size: 17px;
  font-weight: 600;
  color: var(--rk-paper);
}

.page-home .home-count__note p {
  margin: 0;
  max-width: 42ch;
  font-size: 15px;
  line-height: 1.78;
  color: var(--rk-mist);
}

.page-home .home-count__cta {
  justify-self: start;
}

@media (min-width: 900px) {
  .page-home .home-count__body {
    grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
    gap: 36px 48px;
    align-items: start;
  }

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

  .page-home .home-count__ticks {
    grid-column: 2;
  }

  .page-home .home-count__notes {
    grid-column: 2;
  }

  .page-home .home-count__note:first-child {
    border-top: 0;
    padding-top: 4px;
  }

  .page-home .home-count__cta {
    grid-column: 2;
  }
}

/* ---------- 赛季索引 + 资料预览 ---------- */
.page-home .home-archive {
  padding: clamp(56px, 9vw, 116px) 0;
  background: var(--rk-navy);
}

.page-home .home-archive__split {
  display: grid;
  gap: 44px;
}

.page-home .home-archive__index {
  position: relative;
  padding-left: 22px;
}

.page-home .home-archive__index::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  bottom: 6px;
  width: 1px;
  background: linear-gradient(180deg, var(--rk-mint) 0%, var(--rk-grid) 55%, transparent 100%);
}

.page-home .home-season-list {
  list-style: none;
  margin: 16px 0 0;
  padding: 0;
  counter-reset: season;
}

.page-home .home-season__item {
  border-bottom: 1px solid var(--rk-grid);
}

.page-home .home-season {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  padding: 13px 0 9px;
  text-decoration: none;
}

.page-home .home-season__year {
  font-family: var(--rk-mono);
  font-size: 14px;
  letter-spacing: 0.04em;
  color: var(--rk-paper);
  transition: color 0.18s var(--rk-ease);
}

.page-home .home-season:hover .home-season__year,
.page-home .home-season:focus-visible .home-season__year {
  color: var(--rk-mint);
}

.page-home .home-season:focus-visible {
  outline: none;
}

.page-home .home-season__meta {
  font-family: var(--rk-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  color: var(--rk-mist);
  white-space: nowrap;
}

.page-home .home-season__detail {
  margin: 0 0 0;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  font-size: 12px;
  line-height: 1.7;
  color: var(--rk-amber-soft);
  transition: max-height 0.24s var(--rk-ease), opacity 0.24s var(--rk-ease), margin 0.24s var(--rk-ease);
}

.page-home .home-season__item:hover .home-season__detail {
  max-height: 60px;
  opacity: 1;
  margin-bottom: 10px;
}

.page-home .home-archive__figure {
  margin: 28px 0 0;
  position: relative;
  overflow: hidden;
  background: var(--rk-navy-2);
}

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

.page-home .home-archive__figure figcaption {
  padding: 12px 14px;
  font-size: 12px;
  line-height: 1.7;
  color: var(--rk-mist);
  background: var(--rk-indigo);
  border-top: 1px solid var(--rk-grid);
}

.page-home .home-archive__content .rk-lead {
  max-width: 46ch;
}

.page-home .home-cards {
  margin-top: clamp(28px, 4vw, 44px);
  display: grid;
  gap: 22px;
}

.page-home .home-card {
  padding: 24px 22px 20px;
  background: var(--rk-navy-2);
  border-top: 2px solid var(--rk-grid);
  transition: border-color 0.2s var(--rk-ease);
}

.page-home .home-card--mint {
  border-top-color: var(--rk-mint);
}

.page-home .home-card--amber {
  border-top-color: var(--rk-amber);
}

.page-home .home-card--line {
  border-top-color: var(--rk-mist);
}

.page-home .home-card:hover {
  border-top-color: var(--rk-mint);
}

.page-home .home-card__tag {
  display: inline-block;
  margin: 0 0 14px;
}

.page-home .home-card__title {
  margin: 0 0 12px;
  font-size: 19px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--rk-paper);
}

.page-home .home-card__text {
  margin: 0;
  font-size: 14px;
  line-height: 1.8;
  color: var(--rk-mist);
}

.page-home .home-card__foot {
  margin: 18px 0 0;
  padding-top: 12px;
  border-top: 1px solid var(--rk-grid);
  font-size: 12px;
  letter-spacing: 0.08em;
  color: var(--rk-mint-soft);
}

.page-home .home-archive__more {
  margin-top: 26px;
  font-size: 14px;
  line-height: 1.8;
  color: var(--rk-mist);
}

.page-home .home-archive__more a {
  color: var(--rk-mint-soft);
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-thickness: 1px;
}

.page-home .home-archive__more a:hover {
  color: var(--rk-mint);
}

@media (min-width: 900px) {
  .page-home .home-archive__split {
    grid-template-columns: 268px minmax(0, 1fr);
    gap: clamp(36px, 5vw, 76px);
    align-items: start;
  }

  .page-home .home-archive__index {
    position: sticky;
    top: 116px;
  }

  .page-home .home-cards {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0;
    border-top: 1px solid var(--rk-grid);
    border-bottom: 1px solid var(--rk-grid);
  }

  .page-home .home-card {
    border-top: 0;
    border-right: 1px solid var(--rk-grid);
    border-left-width: 0;
    background: transparent;
    padding: 26px 22px;
  }

  .page-home .home-card:last-child {
    border-right: 0;
  }

  .page-home .home-card--mint {
    box-shadow: inset 0 2px 0 0 var(--rk-mint);
  }

  .page-home .home-card--amber {
    box-shadow: inset 0 2px 0 0 var(--rk-amber);
  }

  .page-home .home-card--line {
    box-shadow: inset 0 2px 0 0 var(--rk-mist);
  }
}

/* ---------- 数据一览 ---------- */
.page-home .home-data {
  position: relative;
  overflow: hidden;
  background: var(--rk-paper);
  color: var(--rk-ink);
  padding: clamp(58px, 9vw, 118px) 0;
}

.page-home .home-data .rk-kicker {
  color: #4a6076;
}

.page-home .home-data .rk-title {
  color: var(--rk-ink);
}

.page-home .home-data__lead {
  color: #46596d;
  max-width: 40ch;
}

.page-home .home-data__bg {
  position: absolute;
  right: 0;
  bottom: 0;
  width: min(52%, 620px);
  height: auto;
  max-width: 100%;
  opacity: 0.14;
  object-fit: cover;
  pointer-events: none;
}

.page-home .home-data__wash {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(120% 90% at 100% 100%, rgba(23, 210, 166, 0.12) 0%, transparent 62%),
    linear-gradient(180deg, rgba(8, 23, 43, 0.05) 0%, transparent 40%);
  pointer-events: none;
}

.page-home .home-data .rk-container {
  position: relative;
  z-index: 1;
}

.page-home .home-stats {
  margin: clamp(30px, 4vw, 48px) 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid #cfd8e2;
}

.page-home .home-stat {
  padding: 22px 16px 22px 0;
  border-bottom: 1px solid #cfd8e2;
}

.page-home .home-stat:nth-child(odd) {
  border-right: 1px solid #cfd8e2;
  padding-right: 16px;
}

.page-home .home-stat:nth-child(even) {
  padding-left: 18px;
}

.page-home .home-stat__label {
  font-size: 12px;
  letter-spacing: 0.1em;
  color: #4a6076;
}

.page-home .home-stat__value {
  margin: 10px 0 0;
  font-size: clamp(26px, 3.6vw, 40px);
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--rk-ink);
  line-height: 1.05;
}

.page-home .home-stat__note {
  margin: 10px 0 0;
  font-size: 13px;
  line-height: 1.7;
  color: #5b6f83;
}

.page-home .home-data__foot {
  margin: clamp(26px, 4vw, 40px) 0 0;
  font-size: 14px;
  line-height: 1.8;
  color: #46596d;
}

.page-home .home-data__foot a {
  color: #0f6b58;
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-thickness: 1px;
}

.page-home .home-data__foot a:hover {
  color: #08172b;
}

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

  .page-home .home-stat {
    padding: 26px 26px 26px 0;
    border-right: 1px solid #cfd8e2;
  }

  .page-home .home-stat:nth-child(n) {
    padding-right: 26px;
    padding-left: 0;
  }

  .page-home .home-stat:nth-child(3n) {
    border-right: 0;
  }

  .page-home .home-stat:nth-child(3n + 2),
  .page-home .home-stat:nth-child(3n + 3) {
    padding-left: 26px;
  }
}

/* ---------- 多端与本地访问 ---------- */
.page-home .home-multi {
  background: var(--rk-navy);
  padding: clamp(56px, 9vw, 112px) 0;
}

.page-home .home-multi__split {
  display: grid;
  gap: 40px;
}

.page-home .home-multi__copy .rk-lead {
  max-width: 42ch;
}

.page-home .home-clients {
  list-style: none;
  margin: clamp(26px, 4vw, 38px) 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 0;
  border-top: 1px solid var(--rk-grid);
}

.page-home .home-client {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 15px 14px 15px 0;
  border-bottom: 1px solid var(--rk-grid);
  font-size: 14px;
  color: var(--rk-paper);
}

.page-home .home-client__idx {
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--rk-amber);
}

.page-home .home-multi__cta {
  margin-top: clamp(26px, 4vw, 38px);
}

.page-home .home-multi__panel {
  position: relative;
  padding: 28px 24px 26px;
  background: var(--rk-indigo);
  border-left: 2px solid var(--rk-mint);
}

.page-home .home-multi__panel .rk-label {
  color: var(--rk-mint-soft);
}

.page-home .home-multi__big {
  margin: 14px 0 20px;
  font-size: clamp(48px, 9vw, 84px);
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.01em;
  color: var(--rk-paper);
}

.page-home .home-multi__body {
  margin: 0;
  max-width: 40ch;
  font-size: 14px;
  line-height: 1.8;
  color: var(--rk-mist);
}

.page-home .home-multi__meta {
  margin: 20px 0 0;
  padding-top: 16px;
  border-top: 1px solid var(--rk-grid);
  font-size: 12.5px;
  line-height: 1.8;
  color: var(--rk-amber-soft);
}

@media (min-width: 900px) {
  .page-home .home-multi__split {
    grid-template-columns: minmax(0, 1.25fr) minmax(0, 0.75fr);
    gap: clamp(40px, 6vw, 88px);
    align-items: start;
  }
}

/* ---------- 回访路径 ---------- */
.page-home .home-again {
  position: relative;
  background: var(--rk-navy-2);
  padding: clamp(56px, 9vw, 112px) 0 clamp(40px, 6vw, 72px);
}

.page-home .home-again__head {
  max-width: 640px;
}

.page-home .home-again__cols {
  margin-top: clamp(32px, 5vw, 52px);
  display: grid;
  gap: 0;
  border-top: 1px solid var(--rk-grid);
}

.page-home .home-again__col {
  display: block;
  padding: 22px 12px 22px 0;
  border-bottom: 1px solid var(--rk-grid);
  text-decoration: none;
  transition: background 0.2s var(--rk-ease), padding-left 0.2s var(--rk-ease);
}

.page-home .home-again__col:hover,
.page-home .home-again__col:focus-visible {
  background: rgba(23, 210, 166, 0.06);
  padding-left: 12px;
  outline: none;
}

.page-home .home-again__idx {
  display: block;
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--rk-amber);
}

.page-home .home-again__title {
  display: block;
  margin-top: 10px;
  font-size: 18px;
  font-weight: 600;
  color: var(--rk-paper);
  transition: color 0.2s var(--rk-ease);
}

.page-home .home-again__col:hover .home-again__title {
  color: var(--rk-mint-soft);
}

.page-home .home-again__text {
  display: block;
  margin-top: 9px;
  max-width: 40ch;
  font-size: 14px;
  line-height: 1.78;
  color: var(--rk-mist);
}

.page-home .home-again__rule {
  display: block;
  max-width: var(--rk-max);
  margin: clamp(40px, 6vw, 72px) auto 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--rk-mint) 18%, var(--rk-grid) 60%, transparent);
}

@media (min-width: 900px) {
  .page-home .home-again__cols {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0;
  }

  .page-home .home-again__col {
    padding: 26px 26px 26px 0;
    border-right: 1px solid var(--rk-grid);
    border-bottom: 1px solid var(--rk-grid);
  }

  .page-home .home-again__col:last-child {
    border-right: 0;
  }

  .page-home .home-again__col:hover,
  .page-home .home-again__col:focus-visible {
    padding-left: 0;
    background: rgba(23, 210, 166, 0.06);
  }
}

/* ---------- 固定返回入口 ---------- */
.page-home .home-float {
  display: none;
}

@media (min-width: 1100px) {
  .page-home .home-float {
    display: block;
    position: fixed;
    right: 26px;
    bottom: 34px;
    z-index: 40;
    padding: 10px 14px;
    font-family: var(--rk-mono);
    font-size: 11px;
    letter-spacing: 0.08em;
    text-decoration: none;
    color: var(--rk-amber-soft);
    background: rgba(8, 23, 43, 0.92);
    border: 1px solid var(--rk-amber);
    transition: color 0.18s var(--rk-ease), border-color 0.18s var(--rk-ease);
  }

  .page-home .home-float:hover,
  .page-home .home-float:focus-visible {
    color: var(--rk-mint-soft);
    border-color: var(--rk-mint);
    outline: none;
  }
}

/* ---------- 通用收敛 ---------- */
.page-home .rk-title {
  max-width: 22ch;
}

.page-home .home-hero .rk-title--page {
  font-weight: 500;
  letter-spacing: -0.02em;
}

@media (max-width: 480px) {
  .page-home .rk-title--page {
    font-size: 34px;
  }

  .page-home .home-tick {
    font-size: 10px;
    padding: 13px 2px;
  }
}
