.page-home {
  --home-cut: 14px;
  --home-scan: rgba(233, 241, 247, 0.035);
  --home-body: #c6d4e2;
  display: block;
}

.page-home .section {
  padding: 60px 0;
}

.page-home .section--tight {
  padding: 48px 0 72px;
}

.page-home .section__lede {
  margin: 0 0 28px;
  max-width: 40em;
  color: var(--home-body);
  font-size: 15.5px;
  line-height: 1.85;
}

/* ---------- 首屏 ---------- */

.page-home .home-hero {
  position: relative;
  overflow: hidden;
  padding: 26px 0 56px;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(90% 120% at 92% -10%, rgba(53, 242, 160, 0.13), transparent 58%),
    radial-gradient(70% 90% at 0% 0%, rgba(43, 224, 208, 0.08), transparent 62%);
}

.page-home .home-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(0deg, var(--home-scan) 0 1px, transparent 1px 5px);
  pointer-events: none;
}

.page-home .home-hero > .wrap {
  position: relative;
  z-index: 1;
}

.page-home .home-hero__ctx {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin: 0 0 24px;
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: 0.08em;
  color: var(--mist);
}

.page-home .home-hero__ctx-here {
  color: var(--green);
}

.page-home .home-hero__ctx-sep {
  color: var(--line);
}

.page-home .home-hero__grid {
  display: grid;
  gap: 34px;
}

.page-home .home-hero__kicker {
  margin: 0 0 14px;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  color: var(--cyan);
}

.page-home .home-hero__title {
  margin: 0 0 18px;
  font-family: var(--sans);
  font-weight: 900;
  font-size: clamp(29px, 5.6vw, 50px);
  line-height: 1.16;
  letter-spacing: -0.01em;
  color: var(--white);
}

.page-home .home-hero__lede {
  margin: 0 0 28px;
  max-width: 34em;
  color: var(--home-body);
  font-size: 16px;
  line-height: 1.85;
}

.page-home .home-index {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
}

.page-home .home-index__link {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 14px;
  align-items: baseline;
  padding: 15px 8px 15px 0;
  border-bottom: 1px solid var(--line);
  text-decoration: none;
  color: inherit;
  transition: background-color 0.18s ease, transform 0.18s ease;
}

.page-home .home-index__link:hover,
.page-home .home-index__link:focus-visible {
  background: rgba(53, 242, 160, 0.07);
  transform: translateX(2px);
}

.page-home .home-index__idx {
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: 0.06em;
  color: var(--green);
}

.page-home .home-index__body {
  display: block;
  min-width: 0;
}

.page-home .home-index__name {
  display: block;
  font-size: 15.5px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}

.page-home .home-index__desc {
  display: block;
  font-size: 13px;
  line-height: 1.7;
  color: var(--mist);
}

/* ---------- 补时读秒面板 ---------- */

.page-home .clock-panel {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 340px;
  padding: 24px 22px 22px;
  border: 1px solid var(--line);
  border-left: 2px solid var(--green);
  background: var(--stand);
  clip-path: polygon(0 0, calc(100% - var(--home-cut)) 0, 100% var(--home-cut), 100% 100%, var(--home-cut) 100%, 0 calc(100% - var(--home-cut)));
  overflow: hidden;
  isolation: isolate;
}

.page-home .clock-panel__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 42%;
  filter: saturate(0.72) contrast(1.05);
}

.page-home .clock-panel__veil {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(11, 18, 32, 0.5) 0%, rgba(11, 18, 32, 0.82) 52%, rgba(11, 18, 32, 0.96) 100%);
}

.page-home .clock-panel__body {
  position: relative;
  z-index: 2;
}

.page-home .clock-panel__tags {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
}

.page-home .clock-panel__round {
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: 0.08em;
  color: var(--mist);
}

.page-home .clock-panel .stat-score {
  display: flex;
  align-items: baseline;
  gap: 8px;
  flex-wrap: wrap;
}

.page-home .clock-panel .stat-score__value {
  font-family: var(--mono);
  font-size: clamp(58px, 13vw, 104px);
  font-weight: 700;
  line-height: 0.92;
  letter-spacing: -0.03em;
  color: var(--white);
}

.page-home .clock-panel .stat-score__unit {
  font-family: var(--mono);
  font-size: clamp(30px, 6vw, 48px);
  color: var(--orange);
  line-height: 1;
}

.page-home .clock-panel__label {
  margin: 10px 0 20px;
  font-size: 13px;
  color: var(--mist);
}

.page-home .clock-panel__facts {
  list-style: none;
  margin: 0;
  padding: 16px 0 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 18px;
  border-top: 1px solid rgba(34, 49, 76, 0.9);
}

.page-home .clock-panel__facts li {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
}

.page-home .clock-panel__k {
  font-size: 12.5px;
  color: var(--mist);
}

.page-home .clock-panel__v {
  font-family: var(--mono);
  font-size: 17px;
  font-weight: 700;
  color: var(--green);
}

/* ---------- 01 数据面板 ---------- */

.page-home .board {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-left: 2px solid var(--green);
  clip-path: polygon(0 0, calc(100% - var(--home-cut)) 0, 100% var(--home-cut), 100% 100%, var(--home-cut) 100%, 0 calc(100% - var(--home-cut)));
}

.page-home .board__cell {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 22px 18px;
  background: var(--stand);
  min-width: 0;
}

.page-home .board__num {
  font-family: var(--mono);
  font-size: clamp(24px, 4.2vw, 34px);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--white);
  line-height: 1;
}

.page-home .board__num--green {
  color: var(--green);
}

.page-home .board__unit {
  margin-left: 4px;
  font-size: 0.46em;
  font-weight: 500;
  color: var(--mist);
  letter-spacing: 0;
}

.page-home .board__cap {
  font-size: 12.5px;
  line-height: 1.65;
  color: var(--mist);
}

.page-home .board-figure {
  margin-top: 26px;
}

/* ---------- 图片容器 ---------- */

.page-home .media-frame {
  position: relative;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-left: 2px solid var(--cyan);
  background: var(--stand);
  clip-path: polygon(0 0, calc(100% - var(--home-cut)) 0, 100% var(--home-cut), 100% 100%, var(--home-cut) 100%, 0 calc(100% - var(--home-cut)));
}

.page-home .media-frame__img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  object-fit: cover;
  filter: saturate(0.78) contrast(1.04);
}

.page-home .media-frame__scan {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: repeating-linear-gradient(0deg, rgba(11, 18, 32, 0.3) 0 1px, transparent 1px 5px);
}

.page-home .media-frame__caption {
  padding: 12px 16px 14px;
  border-top: 1px solid var(--line);
  font-family: var(--mono);
  font-size: 11.5px;
  line-height: 1.7;
  color: var(--mist);
  background: var(--stand);
}

/* ---------- 02 三段主线 ---------- */

.page-home .flow-rail {
  position: relative;
  list-style: none;
  margin: 0;
  padding: 6px 0 6px 30px;
  display: grid;
  gap: 26px;
}

.page-home .flow-rail::before {
  content: "";
  position: absolute;
  left: 9px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--cyan), var(--orange));
  transform: skewX(-6deg);
  transform-origin: top center;
}

.page-home .flow-node {
  position: relative;
  min-width: 0;
}

.page-home .flow-node__flag {
  position: absolute;
  top: 22px;
  left: -21px;
  width: 12px;
  height: 12px;
  background: var(--green);
  clip-path: polygon(0 0, 100% 50%, 0 100%);
  transition: transform 0.18s ease;
}

.page-home .flow-node:hover .flow-node__flag {
  transform: translateX(2px);
}

.page-home .flow-node__card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  height: 100%;
  padding: 20px 18px 20px 20px;
  background: var(--stand);
  border: 1px solid var(--line);
  border-top: 2px solid var(--cyan);
  clip-path: polygon(0 0, calc(100% - var(--home-cut)) 0, 100% var(--home-cut), 100% 100%, var(--home-cut) 100%, 0 calc(100% - var(--home-cut)));
}

.page-home .flow-node__step {
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: 0.1em;
  color: var(--orange);
}

.page-home .flow-node__title {
  margin: 0;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.4;
  color: var(--white);
}

.page-home .flow-node__text {
  margin: 0 0 4px;
  font-size: 13.5px;
  line-height: 1.8;
  color: var(--home-body);
}

/* ---------- 03 轮换速览 ---------- */

.page-home .window-grid {
  display: grid;
  gap: 26px;
}

.page-home .window-panel {
  display: flex;
  flex-direction: column;
  gap: 20px;
  min-width: 0;
}

.page-home .window-list {
  display: grid;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  clip-path: polygon(0 0, calc(100% - var(--home-cut)) 0, 100% var(--home-cut), 100% 100%, var(--home-cut) 100%, 0 calc(100% - var(--home-cut)));
}

.page-home .window-item {
  padding: 18px 18px 20px;
  background: var(--stand);
}

.page-home .window-item__head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}

.page-home .window-item__round {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  color: var(--green);
}

.page-home .window-item__title {
  margin: 0 0 8px;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.55;
  color: var(--white);
}

.page-home .window-item__text {
  margin: 0;
  font-size: 13.5px;
  line-height: 1.78;
  color: var(--mist);
}

.page-home .window-panel__cta {
  align-self: flex-start;
}

/* ---------- 04 赛季跟踪 ---------- */

.page-home .season-figure {
  margin-bottom: 30px;
}

.page-home .season-band {
  padding: 26px 20px 24px;
  border: 1px solid var(--line);
  border-left: 2px solid var(--cyan);
  background: linear-gradient(180deg, rgba(19, 30, 51, 0.92) 0%, rgba(11, 18, 32, 0.94) 100%);
  clip-path: polygon(0 0, calc(100% - var(--home-cut)) 0, 100% var(--home-cut), 100% 100%, var(--home-cut) 100%, 0 calc(100% - var(--home-cut)));
}

.page-home .season-band__top {
  display: grid;
  gap: 16px;
}

.page-home .season-band .stat-score {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 6px;
}

.page-home .season-band .stat-score__value {
  font-family: var(--mono);
  font-size: clamp(46px, 10vw, 78px);
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: -0.03em;
  color: var(--white);
}

.page-home .season-band .stat-score__unit {
  font-family: var(--mono);
  font-size: clamp(24px, 5vw, 38px);
  color: var(--mist);
  line-height: 1;
}

.page-home .season-band .stat-score__label {
  flex-basis: 100%;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  color: var(--green);
}

.page-home .season-band__note {
  margin: 0;
  max-width: 42em;
  font-size: 13.5px;
  line-height: 1.85;
  color: var(--home-body);
}

.page-home .season-band__track {
  position: relative;
  height: 10px;
  margin: 62px 0 30px;
  background: rgba(34, 49, 76, 0.9);
  overflow: visible;
}

.page-home .season-band__fill {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 71%;
  background: linear-gradient(90deg, var(--cyan), var(--green));
}

.page-home .season-band__flag {
  position: absolute;
  bottom: calc(100% + 8px);
  transform: translateX(-50%);
  text-align: center;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  color: var(--amber);
  white-space: nowrap;
}

.page-home .season-band__flag i {
  display: block;
  width: 10px;
  height: 10px;
  margin: 0 auto 5px;
  background: var(--orange);
  clip-path: polygon(0 0, 100% 0, 50% 100%);
}

.page-home .season-band__flag--winter {
  left: 46%;
}

.page-home .season-band__flag--summer {
  left: 86%;
}

.page-home .season-band__legend {
  list-style: none;
  margin: 0 0 22px;
  padding: 0;
  display: grid;
  gap: 10px;
}

.page-home .season-band__legend li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  line-height: 1.7;
  color: var(--mist);
}

.page-home .season-band__dot {
  flex: none;
  width: 7px;
  height: 7px;
  background: var(--mist);
}

.page-home .season-band__dot--green {
  background: var(--green);
}

.page-home .season-band__dot--cyan {
  background: var(--cyan);
}

.page-home .season-band__dot--orange {
  background: var(--orange);
}

.page-home .season-band__dot--amber {
  background: var(--amber);
}

/* ---------- 05 安卓端 ---------- */

.page-home .app-grid {
  display: grid;
  gap: 30px;
}

.page-home .app-specs {
  list-style: none;
  margin: 0 0 26px;
  padding: 0;
  border-top: 1px solid var(--line);
}

.page-home .app-specs__item {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 8px 18px;
  padding: 14px 2px;
  border-bottom: 1px solid var(--line);
}

.page-home .app-specs__k {
  font-size: 13px;
  color: var(--mist);
}

.page-home .app-specs__v {
  font-family: var(--mono);
  font-size: 14px;
  color: var(--white);
}

.page-home .app-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.page-home .app-scenes {
  padding: 22px 20px 20px;
  border: 1px solid var(--line);
  border-top: 2px solid var(--orange);
  background: rgba(19, 30, 51, 0.72);
  clip-path: polygon(0 0, calc(100% - var(--home-cut)) 0, 100% var(--home-cut), 100% 100%, var(--home-cut) 100%, 0 calc(100% - var(--home-cut)));
}

.page-home .app-scenes__title {
  margin: 0 0 16px;
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
}

.page-home .app-scenes__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 16px;
}

.page-home .app-scenes__list li {
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(34, 49, 76, 0.85);
}

.page-home .app-scenes__list li:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.page-home .app-scenes__time {
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: 0.04em;
  color: var(--orange);
  padding-top: 2px;
}

.page-home .app-scenes__text {
  font-size: 13.5px;
  line-height: 1.78;
  color: var(--home-body);
}

/* ---------- 06 联系 ---------- */

.page-home .contact-panel {
  padding: 0;
}

.page-home .contact-panel__body {
  padding: 26px 22px 24px;
}

.page-home .contact-panel__text {
  margin: 0 0 22px;
  max-width: 44em;
  font-size: 14.5px;
  line-height: 1.85;
  color: var(--home-body);
}

.page-home .contact-panel__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

/* ---------- 响应式 ---------- */

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

  .page-home .clock-panel {
    min-height: 400px;
  }

  .page-home .season-band__legend {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px 26px;
  }
}

@media (min-width: 900px) {
  .page-home .section {
    padding: 76px 0;
  }

  .page-home .home-hero {
    padding: 34px 0 72px;
  }

  .page-home .home-hero__grid {
    grid-template-columns: minmax(0, 5fr) minmax(0, 6fr);
    gap: 48px;
    align-items: start;
  }

  .page-home .clock-panel {
    min-height: 100%;
  }

  .page-home .flow-rail {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
    padding: 36px 0 0;
  }

  .page-home .flow-rail::before {
    left: 3%;
    right: 3%;
    top: 12px;
    bottom: auto;
    width: auto;
    height: 2px;
    transform: skewY(-1.6deg);
  }

  .page-home .flow-node__flag {
    top: -24px;
    left: 0;
  }

  .page-home .window-grid {
    grid-template-columns: minmax(0, 5fr) minmax(0, 6fr);
    gap: 40px;
    align-items: start;
  }

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

  .page-home .app-grid {
    grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
    gap: 48px;
    align-items: start;
  }

  .page-home .contact-panel__body {
    padding: 32px 30px 30px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .page-home .home-index__link,
  .page-home .flow-node__flag {
    transition: none;
  }

  .page-home .home-index__link:hover,
  .page-home .home-index__link:focus-visible,
  .page-home .flow-node:hover .flow-node__flag {
    transform: none;
  }
}
