.page-home {
  display: block;
  background: var(--paper);
  color: var(--ink);
  overflow-x: clip;
}

.page-home *,
.page-home *::before,
.page-home *::after {
  box-sizing: border-box;
}

/* ---------- 通用标题件 ---------- */
.page-home .home-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 10px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: .2em;
  color: var(--gray);
}

.page-home .home-kicker::before {
  content: "";
  width: 22px;
  height: 2px;
  background: currentColor;
}

.page-home .home-h2 {
  margin: 0;
  font-size: clamp(1.6rem, 4.4vw, 2.9rem);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -0.02em;
}

.page-home .home-head {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding-top: 20px;
  border-top: 3px solid var(--ink);
}

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

.page-home .home-num {
  flex: 0 0 auto;
  font-family: var(--font-mono);
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  font-weight: 700;
  line-height: .88;
  letter-spacing: -0.04em;
  color: var(--ink);
}

/* ---------- 首屏 ---------- */
.page-home .home-hero {
  position: relative;
  padding: 22px 0 76px;
  background: var(--ink);
  color: var(--paper);
  overflow: hidden;
}

.page-home .home-hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 16px;
  background: var(--green);
  clip-path: polygon(0 100%, 100% 0, 100% 100%, 0 100%);
}

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

.page-home .home-hero__ctx {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
  margin: 0 0 20px;
  padding-bottom: 14px;
  border-bottom: 2px solid var(--line);
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: .2em;
  color: var(--green-soft);
}

.page-home .home-hero__ctx span::before {
  content: "▍";
  color: var(--green);
  margin-right: 6px;
}

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

.page-home .home-hero__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

.page-home .home-hero__lead {
  display: flex;
  flex-direction: column;
  padding: 26px 22px;
  background: #11161C;
  border: 3px solid var(--line);
  box-shadow: 6px 6px 0 var(--green);
}

.page-home .home-hero__title {
  margin: 0;
  font-size: clamp(1.85rem, 6.4vw, 3.7rem);
  font-weight: 900;
  line-height: 1.04;
  letter-spacing: -0.02em;
}

.page-home .home-hero__title em {
  font-style: normal;
  color: var(--orange);
}

.page-home .home-hero__dek {
  margin: 18px 0 0;
  max-width: 34em;
  font-size: 1rem;
  line-height: 1.78;
  color: #C9D0D6;
}

.page-home .home-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 26px;
}

.page-home .home-hero__open {
  margin: 22px 0 0;
  padding-left: 12px;
  border-left: 3px solid var(--green);
  font-size: .9rem;
  line-height: 1.7;
  color: var(--green-soft);
}

.page-home .home-hero__shot {
  margin: 0;
  border: 3px solid var(--paper);
  box-shadow: 6px 6px 0 var(--orange);
  overflow: hidden;
  aspect-ratio: 16 / 10;
  background: #11161C;
}

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

.page-home .home-hero__matrix {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 18px 16px;
  background: #11161C;
  border: 3px solid var(--line);
}

.page-home .home-hero__matrix-label,
.page-home .home-hero__prices-label {
  margin: 0;
  font-size: 11px;
  letter-spacing: .2em;
  color: var(--gray);
}

.page-home .home-hero__codes {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.page-home .home-hero__codes li {
  padding: 8px 4px;
  border: 2px solid var(--line);
  text-align: center;
  font-size: clamp(10px, 2.6vw, 12.5px);
  letter-spacing: -0.02em;
  color: var(--green);
  transition: transform var(--ease), box-shadow var(--ease), border-color var(--ease);
}

.page-home .home-hero__codes li:hover {
  transform: translate(-2px, -2px);
  border-color: var(--green);
  box-shadow: 3px 3px 0 var(--green);
}

.page-home .home-hero__prices {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 18px 16px;
  background: var(--green);
  color: var(--ink);
  border: 3px solid var(--paper);
  box-shadow: 6px 6px 0 var(--paper);
}

.page-home .home-hero__prices-label {
  color: rgba(11, 14, 17, .68);
}

.page-home .home-hero__pricelist {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.page-home .home-hero__price {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 8px;
  padding-bottom: 6px;
  border-bottom: 2px solid rgba(11, 14, 17, .22);
  color: var(--ink);
  text-decoration: none;
  transition: transform var(--ease);
}

.page-home .home-hero__pricelist li:last-child .home-hero__price {
  border-bottom-color: transparent;
}

.page-home .home-hero__price:hover {
  transform: translateX(3px);
}

.page-home .home-hero__price-name {
  font-size: .8rem;
  font-weight: 700;
  white-space: nowrap;
}

.page-home .home-hero__price-num {
  font-size: .92rem;
  font-weight: 700;
  white-space: nowrap;
}

/* ---------- 赛季刻度 ---------- */
.page-home .home-season {
  padding: 84px 0 88px;
  background: var(--paper);
}

.page-home .home-timeline {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  margin: 46px 0 0;
  padding: 0;
  list-style: none;
  border-top: 3px solid var(--ink);
}

.page-home .home-timeline__node {
  position: relative;
  padding: 32px 20px 26px 0;
  border-bottom: 2px solid rgba(11, 14, 17, .14);
}

.page-home .home-timeline__node::before {
  content: "";
  position: absolute;
  top: -11px;
  left: 0;
  width: 18px;
  height: 18px;
  background: var(--paper);
  border: 3px solid var(--ink);
  transition: background var(--ease), transform var(--ease), border-color var(--ease);
}

.page-home .home-timeline__node:hover::before,
.page-home .home-timeline__node:focus-within::before {
  background: var(--orange);
  border-color: var(--orange);
  transform: scale(1.18);
}

.page-home .home-timeline__year {
  display: block;
  font-size: clamp(1.5rem, 3.6vw, 2.2rem);
  font-weight: 700;
  line-height: 1;
}

.page-home .home-timeline__count {
  display: inline-block;
  margin-top: 12px;
  padding: 4px 10px;
  background: var(--ink);
  color: var(--green);
  font-size: 1.1rem;
  font-weight: 700;
}

.page-home .home-timeline__node--key .home-timeline__count {
  background: var(--green);
  color: var(--ink);
}

.page-home .home-timeline__node--key::before {
  background: var(--green);
}

.page-home .home-timeline__text {
  margin: 12px 0 0;
  font-size: .9rem;
  line-height: 1.72;
  color: var(--gray);
}

/* ---------- 价格阶梯 ---------- */
.page-home .home-price {
  position: relative;
  margin-top: -1px;
  padding: 116px 0 104px;
  background: var(--ink);
  color: var(--paper);
  clip-path: polygon(0 clamp(1.5rem, 4vw, 3.4rem), 100% 0, 100% 100%, 0 calc(100% - 2.2rem));
}

.page-home .home-price .home-head {
  border-top-color: var(--line);
}

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

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

.page-home .home-price__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 34px;
}

.page-home .home-price__text {
  margin: 24px 0 0;
  font-size: .98rem;
  line-height: 1.8;
  color: #C9D0D6;
}

.page-home .home-price__intro .lq-btn {
  margin-top: 24px;
}

.page-home .home-price__figure {
  margin: 34px 0 0;
  border: 3px solid var(--line);
  box-shadow: 6px 6px 0 var(--green);
  overflow: hidden;
}

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

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

.page-home .home-step {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  padding: 20px 18px;
  background: #11161C;
  border: 3px solid var(--line);
  transition: transform var(--ease), box-shadow var(--ease), border-color var(--ease);
}

.page-home .home-step:hover,
.page-home .home-step:focus-within {
  transform: translate(3px, 3px);
  border-color: var(--green);
  box-shadow: 3px 3px 0 var(--green);
}

.page-home .home-step__top {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}

.page-home .home-step__model {
  padding: 3px 8px;
  border: 2px solid var(--line);
  font-size: .82rem;
  letter-spacing: -0.02em;
  color: var(--green);
}

.page-home .home-step__name {
  font-size: 1.15rem;
  font-weight: 700;
}

.page-home .home-step__price {
  margin: 6px 0 0;
  font-size: clamp(1.5rem, 4vw, 2rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--orange);
}

.page-home .home-step__desc {
  margin: 6px 0 0;
  font-size: .9rem;
  line-height: 1.7;
  color: #B4BCC4;
}

/* ---------- 球队与机型 ---------- */
.page-home .home-teams {
  padding: 84px 0 0;
  background: var(--paper);
  scroll-margin-top: 120px;
}

.page-home .home-teams__head {
  display: flex;
  align-items: flex-start;
  gap: 24px;
}

.page-home .home-teams__head .home-head {
  flex: 1 1 auto;
  min-width: 0;
}

.page-home .home-teams__lead {
  margin: 16px 0 0;
  max-width: 40em;
  font-size: .98rem;
  line-height: 1.8;
  color: var(--gray);
}

.page-home .home-teams__badge {
  flex: 0 0 auto;
  width: 104px;
  margin: 0;
  border: 3px solid var(--ink);
  box-shadow: 6px 6px 0 var(--orange);
  overflow: hidden;
}

.page-home .home-teams__badge img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.page-home .home-filterbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 18px;
  margin-top: 38px;
  padding: 16px 18px;
  background: var(--white);
  border: 3px solid var(--ink);
  box-shadow: 6px 6px 0 var(--ink);
}

.page-home .home-filterbar__label {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: .2em;
  color: var(--gray);
}

.page-home .home-filter {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}

.page-home .home-teams__list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
  gap: 16px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.page-home .home-team__link {
  display: flex;
  flex-direction: column;
  gap: 8px;
  height: 100%;
  padding: 18px 16px;
  background: var(--white);
  border: 3px solid var(--ink);
  box-shadow: 6px 6px 0 var(--ink);
  color: var(--ink);
  text-decoration: none;
  transition: transform var(--ease), box-shadow var(--ease), background var(--ease);
}

.page-home .home-team__link:hover {
  transform: translate(3px, 3px);
  background: var(--green-soft);
  box-shadow: 3px 3px 0 var(--ink);
}

.page-home .home-team__code {
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.page-home .home-team__city {
  font-size: .95rem;
  font-weight: 700;
}

.page-home .home-team__meta {
  font-size: .78rem;
  line-height: 1.6;
  color: var(--gray);
}

.page-home .home-devices {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  margin-top: 56px;
  background: var(--navy);
  color: var(--paper);
  border: 3px solid var(--ink);
  box-shadow: 6px 6px 0 var(--ink);
  overflow: hidden;
}

.page-home .home-devices__shot {
  margin: 0;
  border-bottom: 3px solid var(--line);
}

.page-home .home-devices__shot img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.page-home .home-devices__body {
  padding: 26px 20px 30px;
}

.page-home .home-devices__title {
  margin: 0;
  font-size: clamp(1.25rem, 3vw, 1.7rem);
  font-weight: 700;
  line-height: 1.3;
}

.page-home .home-devices__text {
  margin: 12px 0 20px;
  font-size: .94rem;
  line-height: 1.78;
  color: #C4CCD4;
}

.page-home .home-devices .lq-filter__btn {
  border-color: var(--line);
  color: var(--paper);
  background: transparent;
}

.page-home .home-devices__list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 12px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.page-home .home-device {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 14px;
  border: 2px solid var(--line);
  background: rgba(255, 255, 255, .04);
}

.page-home .home-device__name {
  font-size: .94rem;
  font-weight: 700;
}

.page-home .home-device__spec {
  font-size: .8rem;
  color: var(--green-soft);
}

/* ---------- 招商合作 ---------- */
.page-home .home-partner {
  margin-top: 84px;
  padding: 84px 0 92px;
  background: var(--ink);
}

.page-home .home-partner__card {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  padding: 34px 24px;
  background: var(--green);
  color: var(--ink);
  border: 3px solid var(--paper);
  box-shadow: 8px 8px 0 var(--paper);
  overflow: hidden;
}

.page-home .home-partner__card::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 68px;
  height: 68px;
  background: var(--ink);
  clip-path: polygon(100% 0, 100% 100%, 0 0);
}

.page-home .home-partner .home-kicker {
  color: rgba(11, 14, 17, .72);
}

.page-home .home-partner__title {
  margin: 0;
  font-size: clamp(1.5rem, 3.8vw, 2.4rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.page-home .home-partner__text {
  margin: 16px 0 0;
  max-width: 40em;
  font-size: .96rem;
  line-height: 1.8;
  color: rgba(11, 14, 17, .82);
}

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

.page-home .home-partner__stats li {
  display: flex;
  align-items: baseline;
  gap: 8px;
  padding-bottom: 8px;
  border-bottom: 2px solid rgba(11, 14, 17, .24);
  font-size: .9rem;
  font-weight: 700;
}

.page-home .home-partner__stats li:last-child {
  border-bottom-color: transparent;
}

.page-home .home-partner__stats .lq-num {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.page-home .home-partner__cta {
  margin-top: 22px;
  background: var(--ink);
  color: var(--paper);
  border-color: var(--ink);
  box-shadow: 5px 5px 0 rgba(11, 14, 17, .45);
}

.page-home .home-partner__cta:hover {
  box-shadow: 2px 2px 0 rgba(11, 14, 17, .45);
}

/* ---------- 常见问答与内链 ---------- */
.page-home .home-faq {
  padding: 84px 0 96px;
  background: var(--paper);
}

.page-home .home-faq__list {
  margin: 40px 0 0;
  padding: 0;
  list-style: none;
  border-top: 3px solid var(--ink);
}

.page-home .home-faq__item {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  padding: 24px 0;
  border-bottom: 2px solid rgba(11, 14, 17, .16);
}

.page-home .home-faq__q {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1.45;
}

.page-home .home-faq__a {
  margin: 0;
  font-size: .96rem;
  line-height: 1.82;
  color: var(--gray);
}

.page-home .home-links {
  display: grid;
  margin-top: 52px;
  border-top: 3px solid var(--ink);
}

.page-home .home-links__item {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 16px;
  padding: 20px 4px;
  border-bottom: 2px solid rgba(11, 14, 17, .16);
  color: var(--ink);
  text-decoration: none;
  transition: background var(--ease), padding-left var(--ease);
}

.page-home .home-links__item:hover {
  background: var(--green-soft);
  padding-left: 12px;
}

.page-home .home-links__num {
  font-size: .85rem;
  font-weight: 700;
  color: var(--gray);
}

.page-home .home-links__text {
  font-size: 1rem;
  font-weight: 700;
}

.page-home .home-links__go {
  font-family: var(--font-mono);
  font-size: 1rem;
  color: var(--orange);
}

/* ---------- 桌面栅格 ---------- */
@media (min-width: 900px) {
  .page-home .home-hero {
    padding: 26px 0 96px;
  }

  .page-home .home-hero__grid {
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: 20px;
  }

  .page-home .home-hero__lead {
    grid-column: 1 / 8;
    grid-row: 1 / 3;
    padding: 36px 34px;
  }

  .page-home .home-hero__shot {
    grid-column: 8 / 13;
    grid-row: 1 / 2;
  }

  .page-home .home-hero__matrix {
    grid-column: 8 / 11;
    grid-row: 2 / 3;
  }

  .page-home .home-hero__prices {
    grid-column: 11 / 13;
    grid-row: 2 / 3;
  }

  .page-home .home-season {
    padding: 104px 0 108px;
  }

  .page-home .home-timeline {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .page-home .home-timeline__node {
    padding: 34px 24px 10px 0;
    border-bottom: 0;
    border-right: 2px solid rgba(11, 14, 17, .14);
  }

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

  .page-home .home-price__grid {
    grid-template-columns: 4fr 8fr;
    gap: 52px;
  }

  .page-home .home-price__steps {
    gap: 18px;
  }

  .page-home .home-step {
    grid-template-columns: 1fr auto;
    grid-template-areas:
      "top price"
      "desc price";
    align-items: center;
    gap: 6px 24px;
    padding: 22px 22px;
  }

  .page-home .home-step__top {
    grid-area: top;
  }

  .page-home .home-step__price {
    grid-area: price;
    margin: 0;
    text-align: right;
  }

  .page-home .home-step__desc {
    grid-area: desc;
    margin: 0;
  }

  .page-home .home-step:nth-child(2) {
    margin-left: 14px;
  }

  .page-home .home-step:nth-child(3) {
    margin-left: 28px;
  }

  .page-home .home-step:nth-child(4) {
    margin-left: 42px;
  }

  .page-home .home-teams {
    padding: 104px 0 0;
  }

  .page-home .home-teams__badge {
    width: 140px;
  }

  .page-home .home-teams__list {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .page-home .home-devices {
    grid-template-columns: 5fr 7fr;
    margin-top: 64px;
  }

  .page-home .home-devices__shot {
    border-bottom: 0;
    border-right: 3px solid var(--line);
  }

  .page-home .home-devices__shot img {
    height: 100%;
    aspect-ratio: auto;
  }

  .page-home .home-devices__body {
    padding: 34px 30px 36px;
  }

  .page-home .home-partner {
    margin-top: 96px;
    padding: 96px 0 104px;
  }

  .page-home .home-partner__card {
    grid-template-columns: 7fr 5fr;
    gap: 48px;
    align-items: start;
    padding: 52px 48px;
  }

  .page-home .home-partner__card::after {
    width: 88px;
    height: 88px;
  }

  .page-home .home-faq {
    padding: 104px 0 112px;
  }

  .page-home .home-faq__item {
    grid-template-columns: 5fr 7fr;
    gap: 36px;
    align-items: start;
    padding: 26px 0;
  }
}

@media (min-width: 1200px) {
  .page-home .home-hero__vert {
    display: block;
    position: absolute;
    left: -6px;
    bottom: 42px;
    writing-mode: vertical-rl;
    font-family: var(--font-mono);
    font-size: 12px;
    letter-spacing: .3em;
    color: var(--green);
    opacity: .8;
  }
}

@media (prefers-reduced-motion: reduce) {
  .page-home .home-hero__codes li,
  .page-home .home-hero__price,
  .page-home .home-timeline__node::before,
  .page-home .home-step,
  .page-home .home-team__link,
  .page-home .home-links__item {
    transition: none;
  }

  .page-home .home-hero__codes li:hover,
  .page-home .home-hero__price:hover,
  .page-home .home-step:hover,
  .page-home .home-team__link:hover,
  .page-home .home-links__item:hover {
    transform: none;
  }
}
