.page-home {
  --hp-gap: clamp(20px, 3.4vw, 40px);
  --hp-pad: clamp(48px, 7.5vw, 104px);
  display: block;
}

/* ---------- 上下文提示 ---------- */
.page-home .crumb-line {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  padding-top: 22px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  color: var(--dim);
}

.page-home .crumb-line__here {
  color: var(--cyan);
}

.page-home .crumb-line__sep {
  color: var(--line);
}

/* ---------- 首屏分屏 ---------- */
.page-home .hero {
  display: grid;
  gap: clamp(26px, 4vw, 44px);
  padding: clamp(26px, 4vw, 56px) 0 var(--hp-pad);
}

.page-home .hero__copy > * + * {
  margin-top: 18px;
}

.page-home .hero__copy .eyebrow {
  margin: 0;
}

.page-home .hero__h1 {
  margin: 0;
  font-size: clamp(32px, 7.4vw, 74px);
  line-height: 1.05;
  font-weight: 900;
  letter-spacing: -0.02em;
  color: var(--text);
}

.page-home .hero__lede {
  margin: 0;
  max-width: 54ch;
  font-size: clamp(15px, 1.7vw, 17px);
  line-height: 1.78;
  color: var(--dim);
}

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

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

.page-home .hero__shot {
  position: relative;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  overflow: hidden;
  background: var(--panel-teal);
}

.page-home .hero__shot img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  object-fit: cover;
  filter: saturate(0.5) contrast(1.05);
}

.page-home .hero__scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(6, 17, 13, 0.1) 0%, rgba(6, 17, 13, 0.86) 100%);
  pointer-events: none;
}

/* ---------- 记分牌 ---------- */
.page-home .board {
  position: relative;
  margin-top: -28px;
  margin-left: 14px;
  margin-right: 4px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  overflow: hidden;
}

.page-home .board__cell {
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding: 14px 15px;
  background: var(--panel);
  outline: none;
  transition: background-color var(--dur) var(--ease);
}

.page-home .board__cell:hover,
.page-home .board__cell:focus-visible {
  background: var(--panel-teal);
}

.page-home .board__cell:focus-visible {
  box-shadow: inset 0 0 0 2px var(--cyan);
}

.page-home .board__num {
  font-family: var(--font-mono);
  font-size: clamp(24px, 3.2vw, 32px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--cyan);
}

.page-home .board__cap {
  font-size: 12px;
  letter-spacing: 0.06em;
  color: var(--dim);
}

.page-home .board__more {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  font-size: 11px;
  line-height: 1.55;
  color: var(--amber);
  transition: max-height var(--dur) var(--ease), opacity var(--dur) var(--ease);
}

.page-home .board__cell:hover .board__more,
.page-home .board__cell:focus-visible .board__more {
  max-height: 72px;
  opacity: 1;
}

/* ---------- 赛季纵轴 ---------- */
.page-home .timeline {
  position: relative;
  overflow: hidden;
  padding: var(--hp-pad) 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--ink);
}

.page-home .timeline__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.16;
  filter: saturate(0.35);
  pointer-events: none;
}

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

.page-home .tl__list {
  position: relative;
  list-style: none;
  margin: 34px 0 0;
  padding: 0 0 0 38px;
}

.page-home .tl__list::before {
  content: "";
  position: absolute;
  left: 10px;
  top: 10px;
  bottom: 10px;
  width: 1px;
  background: linear-gradient(180deg, var(--cyan) 0%, var(--line) 62%, transparent 100%);
}

.page-home .tl__item {
  position: relative;
  padding-bottom: 30px;
}

.page-home .tl__item:last-child {
  padding-bottom: 0;
}

.page-home .tl__node {
  position: absolute;
  left: -38px;
  top: 2px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 21px;
  height: 21px;
  border: 1px solid var(--cyan);
  border-radius: 50%;
  background: var(--ink);
  text-decoration: none;
  transition: transform var(--dur) var(--ease), background-color var(--dur) var(--ease);
}

.page-home .tl__node:hover,
.page-home .tl__node:focus-visible {
  transform: scale(1.3);
  background: var(--panel-teal);
  outline: none;
}

.page-home .tl__node:focus-visible {
  box-shadow: 0 0 0 3px rgba(63, 227, 198, 0.35);
}

.page-home .tl__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--cyan);
}

.page-home .tl__body {
  max-width: 62ch;
}

.page-home .tl__year {
  margin: 0 0 6px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  color: var(--amber);
}

.page-home .tl__name {
  margin: 0 0 8px;
  font-size: clamp(18px, 2.2vw, 22px);
  font-weight: 800;
  letter-spacing: -0.01em;
  color: var(--text);
}

.page-home .tl__text {
  margin: 0;
  font-size: 15px;
  line-height: 1.75;
  color: var(--dim);
}

/* ---------- 点球记录面板 ---------- */
.page-home .penalties {
  padding: var(--hp-pad) 0;
}

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

.page-home .pen__copy > * + * {
  margin-top: 16px;
}

.page-home .pen__text {
  margin: 0;
  max-width: 58ch;
  font-size: 15.5px;
  line-height: 1.78;
  color: var(--dim);
}

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

.page-home .pen__fig {
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  overflow: hidden;
  background: var(--panel);
}

.page-home .pen__fig img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  filter: saturate(0.38);
  opacity: 0.75;
}

.page-home .pen__cells {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border-top: 1px solid var(--line);
}

.page-home .pen__cell {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 16px 15px;
  background: var(--panel);
}

.page-home .pen__num {
  font-family: var(--font-mono);
  font-size: clamp(22px, 3vw, 28px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--amber);
}

.page-home .pen__label {
  font-size: 12px;
  letter-spacing: 0.06em;
  color: var(--dim);
}

/* ---------- 栏目入口 ---------- */
.page-home .columns {
  padding: var(--hp-pad) 0;
}

.page-home .col-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 34px;
}

.page-home .col-card {
  position: relative;
  display: block;
  padding: 20px 18px 22px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  text-decoration: none;
  color: var(--text);
  transition: border-color var(--dur) var(--ease), transform var(--dur) var(--ease), background-color var(--dur) var(--ease);
}

.page-home .col-card::after {
  content: "";
  position: absolute;
  top: 7px;
  left: 7px;
  right: -7px;
  bottom: -7px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  border-radius: 0 0 var(--r-md) 0;
  pointer-events: none;
}

.page-home .col-card:hover,
.page-home .col-card:focus-visible {
  border-color: var(--cyan);
  background: var(--panel-teal);
  transform: translateY(-3px);
  outline: none;
}

.page-home .col-card:focus-visible {
  box-shadow: 0 0 0 3px rgba(63, 227, 198, 0.3);
}

.page-home .col-card__img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  filter: saturate(0.32);
  border-radius: var(--r-sm);
  margin-bottom: 16px;
}

.page-home .col-card__idx {
  display: block;
  margin-bottom: 10px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  color: var(--amber);
}

.page-home .col-card__name {
  margin: 0 0 8px;
  font-size: 19px;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: var(--text);
}

.page-home .col-card__desc {
  margin: 0;
  font-size: 14px;
  line-height: 1.66;
  color: var(--dim);
}

/* ---------- 奖项条带 ---------- */
.page-home .awards {
  padding: var(--hp-pad) 0;
  border-top: 1px solid var(--line);
}

.page-home .aw-strip {
  margin-top: 30px;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 4px 4px 14px;
  scroll-snap-type: x proximity;
  -webkit-overflow-scrolling: touch;
  scrollbar-color: var(--line) transparent;
  scrollbar-width: thin;
}

.page-home .aw-strip:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 4px;
}

.page-home .aw-list {
  display: flex;
  gap: 14px;
  width: max-content;
  list-style: none;
  margin: 0;
  padding: 0;
}

.page-home .aw-card {
  flex: 0 0 auto;
  width: 236px;
  padding: 18px 16px 20px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-top: 3px solid var(--amber);
  border-radius: var(--r-md);
  scroll-snap-align: start;
}

.page-home .aw-card__cat {
  margin: 0 0 10px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  color: var(--dim);
}

.page-home .aw-card__name {
  margin: 0 0 8px;
  font-size: 18px;
  font-weight: 800;
  color: var(--text);
}

.page-home .aw-card__desc {
  margin: 0;
  font-size: 13.5px;
  line-height: 1.62;
  color: var(--dim);
}

.page-home .aw-hint {
  margin: 12px 0 0;
  font-size: 13px;
  line-height: 1.7;
  color: var(--dim);
}

.page-home .aw-hint a {
  color: var(--cyan);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ---------- 服务与联系 ---------- */
.page-home .reach {
  padding: var(--hp-pad) 0;
  border-top: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(6, 17, 13, 0) 0%, rgba(15, 58, 49, 0.42) 100%);
}

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

.page-home .reach__copy > * + * {
  margin-top: 16px;
}

.page-home .reach__text {
  margin: 0;
  max-width: 58ch;
  font-size: 15.5px;
  line-height: 1.78;
  color: var(--dim);
}

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

.page-home .reach__facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin: 0;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  overflow: hidden;
}

.page-home .reach__fact {
  padding: 16px 14px;
  background: var(--panel);
}

.page-home .reach__fact dt {
  font-size: 12px;
  letter-spacing: 0.06em;
  color: var(--dim);
}

.page-home .reach__fact dd {
  margin: 8px 0 0;
  font-family: var(--font-mono);
  font-size: clamp(18px, 2.4vw, 22px);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--amber);
}

.page-home .reach__contact {
  display: grid;
  gap: 12px;
  margin-top: 22px;
  padding: 20px 18px;
  border: 1px dashed var(--line);
  border-radius: var(--r-md);
  background: rgba(16, 22, 20, 0.7);
}

.page-home .reach__line {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 6px 14px;
  margin: 0;
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--text);
  word-break: break-word;
}

.page-home .reach__line span {
  min-width: 62px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--dim);
}

.page-home .reach__note {
  margin: 4px 0 0;
  font-size: 13px;
  line-height: 1.7;
  color: var(--dim);
}

/* ---------- 响应式 ---------- */
@media (min-width: 640px) {
  .page-home .col-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

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

  .page-home .board {
    position: absolute;
    right: 16px;
    bottom: 16px;
    left: auto;
    margin: 0;
    width: min(380px, 78%);
    background: rgba(36, 65, 58, 0.9);
    box-shadow: 0 18px 40px rgba(6, 17, 13, 0.6);
  }

  .page-home .board__cell {
    background: rgba(16, 22, 20, 0.94);
  }

  .page-home .pen__grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.08fr);
    align-items: start;
    gap: 52px;
  }

  .page-home .reach__grid {
    grid-template-columns: minmax(0, 1.12fr) minmax(0, 1fr);
    gap: 52px;
  }
}

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

  .page-home .aw-card {
    width: 264px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .page-home .col-card,
  .page-home .board__cell,
  .page-home .tl__node,
  .page-home .board__more {
    transition: none;
  }

  .page-home .col-card:hover,
  .page-home .col-card:focus-visible {
    transform: none;
  }

  .page-home .tl__node:hover,
  .page-home .tl__node:focus-visible {
    transform: none;
  }
}
