.page-home {
  --home-hair: rgba(247, 244, 239, .12);
  --home-hair-strong: rgba(247, 244, 239, .3);
  --home-lift: 0 30px 70px -40px rgba(0, 0, 0, .95);
  display: block;
}

/* ---------- 面包屑 ---------- */
.page-home .crumb__list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin: 0;
  padding: 22px 0 0;
  list-style: none;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: .06em;
  color: var(--c-gray);
}
.page-home .crumb__item { color: var(--c-gray); }
.page-home .crumb__item[aria-current="page"] { color: var(--c-orange); }
.page-home .crumb__sep { color: rgba(139, 148, 158, .5); }

/* ---------- 首屏 ---------- */
.page-home .hero {
  position: relative;
  padding-block: clamp(26px, 4vw, 52px) clamp(46px, 7vw, 96px);
  overflow: hidden;
}
.page-home .hero::before {
  content: "";
  position: absolute;
  inset: -25% -12% auto -12%;
  height: 130%;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(58% 52% at 82% 6%, rgba(255, 77, 28, .24), transparent 62%),
    radial-gradient(44% 44% at 4% 90%, rgba(0, 216, 255, .14), transparent 66%);
}
.page-home .hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(30px, 5vw, 62px);
}
.page-home .hero__title {
  margin: 14px 0 0;
  font-family: var(--font-display);
  font-weight: 900;
  line-height: .94;
  letter-spacing: -.04em;
  font-size: clamp(42px, 8.4vw, 100px);
  color: var(--c-white);
}
.page-home .hero__title-a { display: block; color: var(--c-white); }
.page-home .hero__title-b {
  display: block;
  margin-top: .1em;
  color: var(--c-orange);
  font-size: clamp(32px, 5.8vw, 72px);
  letter-spacing: -.02em;
}
.page-home .hero__lead {
  margin: 26px 0 0;
  max-width: 52ch;
  font-size: clamp(15.5px, 1.55vw, 18px);
  line-height: 1.85;
  color: rgba(247, 244, 239, .82);
}
.page-home .hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}
.page-home .hero__links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  margin: 30px 0 0;
  padding: 18px 0 0;
  list-style: none;
  border-top: 1px solid var(--home-hair);
}
.page-home .hero__links a {
  position: relative;
  display: inline-block;
  padding-bottom: 3px;
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: .02em;
  color: var(--c-cyan);
  text-decoration: none;
}
.page-home .hero__links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: currentColor;
  opacity: .55;
  transform: scaleX(.32);
  transform-origin: left;
  transition: transform .35s var(--ease), opacity .35s var(--ease);
}
.page-home .hero__links a:hover::after { transform: scaleX(1); opacity: 1; }

.page-home .hero__stage { position: relative; }
.page-home .hero__frame {
  position: relative;
  margin: 0;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--c-black-3);
  clip-path: polygon(6% 0, 100% 0, 100% 88%, 93% 100%, 0 100%, 0 12%);
  box-shadow: var(--home-lift);
}
.page-home .hero__frame img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.08) contrast(1.06);
}
.page-home .hero__frame::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(150deg, rgba(255, 77, 28, .3), rgba(11, 14, 19, .58) 64%);
}
.page-home .hero__float {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 2px;
  width: fit-content;
  max-width: 320px;
  margin: 18px 0 0;
  padding: 20px 24px;
  border-radius: var(--radius);
  border: 1px solid var(--home-hair-strong);
  backdrop-filter: blur(14px);
}
.page-home .hero__float-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .16em;
  color: var(--c-gray);
}
.page-home .hero__float-value {
  font-family: var(--font-display);
  font-size: 62px;
  line-height: 1;
  letter-spacing: -.03em;
  color: var(--c-orange);
}
.page-home .hero__float-note {
  font-size: 12.5px;
  line-height: 1.65;
  color: rgba(247, 244, 239, .68);
}

/* ---------- 章节通用 ---------- */
.page-home .home-block {
  position: relative;
  padding-block: clamp(52px, 7vw, 108px);
}
.page-home .home-block__head {
  display: grid;
  gap: 14px;
  max-width: 760px;
  margin-bottom: clamp(28px, 4vw, 52px);
}
.page-home .home-block__title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(27px, 4.2vw, 50px);
  line-height: 1.1;
  letter-spacing: -.03em;
  color: var(--c-white);
}
.page-home .home-block__lead {
  margin: 0;
  max-width: 66ch;
  font-size: clamp(14.5px, 1.45vw, 17px);
  line-height: 1.85;
  color: rgba(247, 244, 239, .74);
}

/* ---------- 数据舱 ---------- */
.page-home .deck {
  background: linear-gradient(180deg, transparent, rgba(0, 216, 255, .045) 45%, transparent);
}
.page-home .deck__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.page-home .deck__cell {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: clamp(18px, 2.4vw, 28px);
  border: 1px solid var(--home-hair);
  border-radius: var(--radius);
  background: rgba(247, 244, 239, .035);
  overflow: hidden;
  transition: transform .35s var(--ease), border-color .35s var(--ease), background .35s var(--ease);
}
.page-home .deck__cell::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--c-orange), var(--c-amber), var(--c-cyan));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .5s var(--ease);
}
.page-home .deck__cell:hover {
  transform: translateY(-3px);
  border-color: var(--home-hair-strong);
  background: rgba(247, 244, 239, .065);
}
.page-home .deck__cell:hover::after { transform: scaleX(1); }
.page-home .deck__num {
  font-family: var(--font-display);
  font-size: clamp(40px, 5.4vw, 72px);
  line-height: .92;
  letter-spacing: -.04em;
  color: var(--c-orange);
}
.page-home .deck__cell:nth-child(even) .deck__num { color: var(--c-cyan); }
.page-home .deck__label {
  font-family: var(--font-display);
  font-size: 15px;
  letter-spacing: .02em;
  color: var(--c-white);
}
.page-home .deck__desc {
  margin: 2px 0 0;
  font-size: 13px;
  line-height: 1.7;
  color: rgba(247, 244, 239, .66);
}

/* ---------- 签表与赛程 ---------- */
.page-home .tables__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
.page-home .tank {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: clamp(20px, 2.8vw, 34px);
  border-radius: var(--radius);
  overflow: hidden;
}
.page-home .tank--bracket {
  border: 1px solid var(--home-hair);
  background: linear-gradient(160deg, rgba(247, 244, 239, .075), rgba(247, 244, 239, .02) 62%);
}
.page-home .tank--schedule {
  border: 1px solid rgba(255, 77, 28, .22);
  background: linear-gradient(180deg, rgba(122, 31, 61, .82), rgba(11, 14, 19, .94) 76%);
}
.page-home .tank__head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.page-home .tank__title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(20px, 2.3vw, 26px);
  letter-spacing: -.02em;
  color: var(--c-white);
}
.page-home .bracket {
  display: block;
  width: 100%;
  height: auto;
  max-height: 190px;
}
.page-home .bracket__line {
  fill: none;
  stroke: rgba(0, 216, 255, .55);
  stroke-width: 1.5;
}
.page-home .bracket__node {
  fill: rgba(247, 244, 239, .12);
  stroke: rgba(247, 244, 239, .32);
  stroke-width: 1;
}
.page-home .bracket__node--hot {
  fill: rgba(255, 77, 28, .92);
  stroke: var(--c-orange);
}
.page-home .tank__list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.page-home .tank__list li {
  position: relative;
  padding-left: 15px;
  font-size: 13.5px;
  line-height: 1.72;
  color: rgba(247, 244, 239, .74);
}
.page-home .tank__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .68em;
  width: 7px;
  height: 1px;
  background: var(--c-orange);
}
.page-home .tank__list b {
  color: var(--c-white);
  font-weight: 700;
}
.page-home .sched {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}
.page-home .sched__row {
  display: grid;
  gap: 3px;
  padding: 13px 0;
  border-bottom: 1px solid rgba(247, 244, 239, .14);
}
.page-home .sched__row:last-child { border-bottom: 0; }
.page-home .sched__k {
  font-family: var(--font-display);
  font-size: 15px;
  color: var(--c-white);
}
.page-home .sched__v {
  font-family: var(--font-mono);
  font-size: 12.5px;
  letter-spacing: .02em;
  color: rgba(247, 244, 239, .68);
}
.page-home .tank__media {
  position: relative;
  margin: 0;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border-radius: 10px;
}
.page-home .tank__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .8;
}
.page-home .tank__cta {
  margin-top: auto;
  align-self: flex-start;
  padding-bottom: 2px;
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: .04em;
  color: var(--c-cyan);
  text-decoration: none;
  border-bottom: 1px solid rgba(0, 216, 255, .42);
  transition: color .3s var(--ease), border-color .3s var(--ease);
}
.page-home .tank__cta:hover {
  color: var(--c-orange);
  border-color: rgba(255, 77, 28, .62);
}

/* ---------- 跑动与战绩 ---------- */
.page-home .run-strip {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 16px;
}
.page-home .run-strip__cell {
  padding: clamp(20px, 2.6vw, 30px);
  border: 1px solid var(--home-hair);
  border-radius: var(--radius);
  background: linear-gradient(150deg, rgba(0, 216, 255, .08), rgba(247, 244, 239, .02));
}
.page-home .run-strip__key {
  margin: 0;
  font-family: var(--font-mono);
  font-size: 12.5px;
  letter-spacing: .12em;
  color: var(--c-cyan);
}
.page-home .run-strip__bars {
  display: flex;
  align-items: flex-end;
  gap: 6px;
  height: 58px;
  margin: 18px 0 10px;
}
.page-home .run-strip__bars i {
  flex: 1;
  border-radius: 2px 2px 0 0;
  background: linear-gradient(180deg, var(--c-orange), rgba(255, 77, 28, .26));
}
.page-home .run-strip__bars i:nth-child(1) { height: 42%; }
.page-home .run-strip__bars i:nth-child(2) { height: 68%; }
.page-home .run-strip__bars i:nth-child(3) { height: 51%; }
.page-home .run-strip__bars i:nth-child(4) { height: 84%; }
.page-home .run-strip__bars i:nth-child(5) { height: 62%; }
.page-home .run-strip__bars i:nth-child(6) { height: 92%; }
.page-home .run-strip__val {
  margin: 0;
  font-size: 13px;
  line-height: 1.72;
  color: rgba(247, 244, 239, .64);
}
.page-home .form-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 18px 0 10px;
  padding: 0;
  list-style: none;
}
.page-home .form-row__item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  border: 1px solid transparent;
  font-family: var(--font-mono);
  font-size: 14px;
  font-weight: 600;
}
.page-home .form-row__item--win {
  color: var(--c-orange);
  background: rgba(255, 77, 28, .16);
  border-color: rgba(255, 77, 28, .42);
}
.page-home .form-row__item--draw {
  color: var(--c-cyan);
  background: rgba(0, 216, 255, .12);
  border-color: rgba(0, 216, 255, .32);
}
.page-home .form-row__item--loss {
  color: var(--c-gray);
  background: rgba(139, 148, 158, .12);
  border-color: rgba(139, 148, 158, .3);
}

/* ---------- 观赛 12 分类 ---------- */
.page-home .watch__media {
  position: relative;
  margin: 0 0 clamp(24px, 3.6vw, 44px);
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--c-black-3);
}
.page-home .watch__media img {
  display: block;
  width: 100%;
  aspect-ratio: 14 / 6;
  object-fit: cover;
  filter: saturate(1.06);
}
.page-home .watch__media::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(105deg, rgba(122, 31, 61, .6), rgba(11, 14, 19, .12) 52%, rgba(0, 216, 255, .24));
}
.page-home .watch__cap {
  position: absolute;
  z-index: 2;
  left: clamp(16px, 3vw, 34px);
  right: clamp(16px, 3vw, 34px);
  bottom: clamp(14px, 2.4vw, 28px);
  margin: 0;
  font-family: var(--font-mono);
  font-size: 12.5px;
  letter-spacing: .04em;
  line-height: 1.6;
  color: rgba(247, 244, 239, .9);
}
.page-home .watch__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.page-home .watch__card {
  position: relative;
  padding: 18px 16px 20px;
  border: 1px solid var(--home-hair);
  border-radius: var(--radius);
  background: rgba(247, 244, 239, .03);
  overflow: hidden;
  transition: transform .3s var(--ease), background .3s var(--ease), border-color .3s var(--ease);
}
.page-home .watch__card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 36px;
  height: 2px;
  background: var(--c-cyan);
  transition: width .45s var(--ease);
}
.page-home .watch__card:hover {
  transform: translateY(-4px);
  background: rgba(247, 244, 239, .07);
  border-color: var(--home-hair-strong);
}
.page-home .watch__card:hover::before { width: 100%; }
.page-home .watch__idx {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .14em;
  color: var(--c-orange);
}
.page-home .watch__name {
  margin: 8px 0 6px;
  font-family: var(--font-display);
  font-size: 16px;
  letter-spacing: -.01em;
  color: var(--c-white);
}
.page-home .watch__desc {
  margin: 0;
  font-size: 12.5px;
  line-height: 1.68;
  color: rgba(247, 244, 239, .62);
}

/* ---------- 复盘规则 ---------- */
.page-home .rules__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(28px, 4vw, 54px);
}
.page-home .rules__list {
  display: grid;
  gap: 1px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
  border: 1px solid var(--home-hair);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--home-hair);
}
.page-home .rules__list li {
  display: grid;
  gap: 6px;
  padding: 16px 18px;
  background: var(--c-black-2);
  font-size: 13.5px;
  line-height: 1.72;
  color: rgba(247, 244, 239, .72);
}
.page-home .rules__tag {
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: .12em;
  color: var(--c-amber);
}
.page-home .rules__copy .btn { margin-top: 26px; }
.page-home .rules__aside {
  display: grid;
  gap: 18px;
  align-content: start;
}
.page-home .rules__media {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--c-black-3);
}
.page-home .rules__media img {
  display: block;
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
}
.page-home .rules__stat {
  display: grid;
  gap: 8px;
  padding: 24px 26px;
  border-radius: var(--radius);
}
.page-home .rules__stat-num {
  font-family: var(--font-display);
  font-size: clamp(46px, 5.6vw, 66px);
  line-height: .92;
  letter-spacing: -.04em;
  color: var(--c-cyan);
}
.page-home .rules__stat-label {
  font-size: 13px;
  line-height: 1.72;
  color: rgba(247, 244, 239, .74);
}

/* ---------- 本月专栏与反馈 ---------- */
.page-home .columns__list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--home-hair);
}
.page-home .columns__item {
  display: grid;
  gap: 8px;
  padding: clamp(20px, 2.6vw, 30px) 0;
  border-bottom: 1px solid var(--home-hair);
  transition: padding-left .35s var(--ease);
}
.page-home .columns__item:hover { padding-left: 14px; }
.page-home .columns__k {
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: .14em;
  color: var(--c-cyan);
}
.page-home .columns__name {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(19px, 2.2vw, 24px);
  letter-spacing: -.01em;
  color: var(--c-white);
}
.page-home .columns__desc {
  margin: 0;
  max-width: 64ch;
  font-size: 14px;
  line-height: 1.78;
  color: rgba(247, 244, 239, .68);
}
.page-home .columns__link {
  justify-self: start;
  padding-bottom: 2px;
  font-family: var(--font-mono);
  font-size: 12.5px;
  letter-spacing: .05em;
  color: var(--c-orange);
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 77, 28, .45);
  transition: color .3s var(--ease), border-color .3s var(--ease);
}
.page-home .columns__link:hover {
  color: var(--c-amber);
  border-color: rgba(255, 176, 32, .6);
}
.page-home .feedback-band {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
  margin-top: clamp(32px, 4.6vw, 58px);
  padding: clamp(24px, 3.2vw, 40px);
  border-radius: var(--radius);
}
.page-home .feedback-band__title {
  margin: 0 0 10px;
  font-family: var(--font-display);
  font-size: clamp(20px, 2.5vw, 28px);
  letter-spacing: -.02em;
  color: var(--c-white);
}
.page-home .feedback-band__text {
  margin: 0;
  max-width: 62ch;
  font-size: 14px;
  line-height: 1.82;
  color: rgba(247, 244, 239, .76);
}
.page-home .feedback-band__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

/* ---------- 响应式 ---------- */
@media (min-width: 680px) {
  .page-home .watch__grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; }
  .page-home .run-strip { grid-template-columns: 1fr 1fr; }
}

@media (min-width: 720px) {
  .page-home .deck__grid {
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: 18px;
  }
  .page-home .deck__cell:nth-child(1) { grid-column: span 7; }
  .page-home .deck__cell:nth-child(2) { grid-column: span 5; }
  .page-home .deck__cell:nth-child(3) { grid-column: span 5; }
  .page-home .deck__cell:nth-child(4) { grid-column: span 7; }
  .page-home .deck__cell:nth-child(5) { grid-column: span 6; }
  .page-home .deck__cell:nth-child(6) { grid-column: span 6; }
}

@media (min-width: 820px) {
  .page-home .feedback-band {
    grid-template-columns: minmax(0, 1.5fr) auto;
    align-items: center;
    gap: 32px;
  }
}

@media (min-width: 900px) {
  .page-home .tables__grid {
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: 20px;
  }
  .page-home .tank--bracket { grid-column: span 7; }
  .page-home .tank--schedule { grid-column: span 5; }

  .page-home .columns__item {
    grid-template-columns: 92px minmax(0, 240px) minmax(0, 1fr) auto;
    align-items: center;
    gap: 22px;
    padding-block: 26px;
  }
  .page-home .columns__item:hover { padding-left: 0; }
  .page-home .columns__item:hover .columns__name { color: var(--c-orange); }
  .page-home .columns__name { transition: color .3s var(--ease); }
}

@media (min-width: 940px) {
  .page-home .rules__grid {
    grid-template-columns: minmax(0, 1.08fr) minmax(0, .92fr);
    align-items: start;
  }
}

@media (min-width: 960px) {
  .page-home .hero__grid {
    grid-template-columns: minmax(0, 1.04fr) minmax(0, .96fr);
    align-items: center;
  }
  .page-home .hero__float {
    margin: -48px 0 0 clamp(0px, 4vw, 44px);
  }
}

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

@media (prefers-reduced-motion: reduce) {
  .page-home .deck__cell,
  .page-home .watch__card,
  .page-home .columns__item,
  .page-home .columns__name,
  .page-home .hero__links a::after { transition: none; }
  .page-home .deck__cell:hover,
  .page-home .watch__card:hover { transform: none; }
}
