.page-home {
  background: var(--site-bg);
  color: var(--text-main);
  overflow-x: clip;
  font-family: var(--font-sans);
}

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

.page-home .page-home-container {
  width: 100%;
  max-width: 1240px;
  margin-inline: auto;
  padding-inline: 16px;
  box-sizing: border-box;
}

.page-home .page-home-breadcrumb {
  max-width: 1240px;
  margin-inline: auto;
  padding: 18px 16px 0;
  font-size: 13px;
  color: var(--text-sub);
}

.page-home .page-home-breadcrumb a {
  color: var(--text-sub);
  text-decoration: none;
}

.page-home .page-home-breadcrumb a:hover {
  color: var(--accent);
}

.page-home .page-section {
  padding-top: 44px;
  padding-bottom: 44px;
}

@media (min-width: 768px) {
  .page-home .page-home-container,
  .page-home .page-home-breadcrumb {
    padding-inline: 20px;
  }

  .page-home .page-section {
    padding-top: 64px;
    padding-bottom: 64px;
  }
}

.page-home .section-head {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 22px;
}

.page-home .section-head h2 {
  font-size: 28px;
  line-height: 1.2;
  font-weight: 900;
  letter-spacing: -0.01em;
  margin: 0;
}

.page-home .section-head .section-desc {
  color: var(--text-sub);
  margin: 0;
  max-width: 46em;
  line-height: 1.7;
  font-size: 14px;
}

@media (min-width: 768px) {
  .page-home .section-head h2 {
    font-size: 38px;
  }

  .page-home .section-head .section-desc {
    font-size: 15px;
  }
}

.page-home .tag {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: rgba(var(--accent-rgb), 0.12);
  color: var(--accent);
  border: 1px solid rgba(var(--accent-rgb), 0.35);
  border-radius: 999px;
  padding: 4px 10px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.4;
}

.page-home .tag--warm {
  background: rgba(var(--accent-warm-rgb), 0.12);
  color: var(--accent-warm);
  border-color: rgba(var(--accent-warm-rgb), 0.4);
}

.page-home .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  border-radius: var(--radius-md);
  padding: 12px 22px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  line-height: 1;
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease, background 0.24s ease;
}

.page-home .btn-primary {
  position: relative;
  overflow: hidden;
  background: var(--accent);
  color: var(--accent-invert);
  box-shadow: 0 8px 24px rgba(var(--accent-rgb), 0.22);
}

.page-home .btn-primary::after {
  content: "";
  position: absolute;
  top: 0;
  left: -70%;
  width: 45%;
  height: 100%;
  background: linear-gradient(
    105deg,
    transparent,
    rgba(255, 255, 255, 0.32),
    transparent
  );
  animation: home-shimmer 3.2s ease-in-out infinite;
}

.page-home .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 34px rgba(var(--accent-rgb), 0.32);
}

.page-home .btn-ghost {
  background: transparent;
  color: var(--text-main);
  border: 1px solid var(--line);
}

.page-home .btn-ghost:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-2px);
}

.page-home .btn-sm {
  padding: 9px 16px;
  font-size: 13px;
  border-radius: var(--radius-sm);
}

/* ---------- Hero ---------- */
.page-home .hero-section {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
  padding: 40px 0 56px;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.page-home .hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.26;
  z-index: 0;
}

.page-home .scanline-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 3px,
    rgba(42, 255, 107, 0.025) 3px,
    rgba(42, 255, 107, 0.025) 4px
  );
}

.page-home .scanline-overlay::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 2px;
  top: -6%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(var(--accent-rgb), 0.3),
    transparent
  );
  box-shadow: 0 0 14px rgba(var(--accent-rgb), 0.35);
  animation: home-scan-line 7s linear infinite;
}

@keyframes home-scan-line {
  0% {
    top: -6%;
    opacity: 0;
  }
  8% {
    opacity: 1;
  }
  92% {
    opacity: 1;
  }
  100% {
    top: 106%;
    opacity: 0;
  }
}

.page-home .hero-vertical-note {
  position: absolute;
  right: 8px;
  bottom: 30px;
  z-index: 2;
  writing-mode: vertical-rl;
  font-size: 12px;
  letter-spacing: 0.34em;
  color: var(--text-sub);
}

@media (min-width: 768px) {
  .page-home .hero-vertical-note {
    right: 22px;
  }
}

.page-home .hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  align-items: center;
}

.page-home .hero-copy {
  max-width: 620px;
}

.page-home .hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 14px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--text-sub);
  text-transform: uppercase;
}

.page-home .hero-kicker::before {
  content: "";
  width: 28px;
  height: 2px;
  background: var(--accent);
  box-shadow: 0 0 8px rgba(var(--accent-rgb), 0.6);
}

.page-home .hero-title {
  margin: 0;
  font-size: clamp(52px, 11vw, 96px);
  line-height: 0.96;
  font-weight: 900;
  letter-spacing: -0.03em;
  color: var(--text-main);
}

.page-home .hero-slogan {
  margin: 12px 0 0;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--accent);
}

@media (min-width: 768px) {
  .page-home .hero-slogan {
    font-size: 22px;
  }
}

.page-home .hero-desc {
  margin: 22px 0 0;
  max-width: 34em;
  color: var(--text-sub);
  font-size: 15px;
  line-height: 1.85;
}

.page-home .hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.page-home .hero-data-card {
  background: var(--card-bg);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  padding: 20px;
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.34);
}

.page-home .hero-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 6px;
}

.page-home .live-pulse {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--accent);
}

.page-home .live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 0 rgba(var(--accent-rgb), 0.55);
  animation: home-live-pulse 2.2s infinite;
}

@keyframes home-live-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(var(--accent-rgb), 0.55);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(var(--accent-rgb), 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(var(--accent-rgb), 0);
  }
}

.page-home .hero-match {
  padding: 14px 0 12px;
  border-top: 1px dashed var(--line-soft);
}

.page-home .hero-match-top {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
}

.page-home .hero-match-label {
  font-size: 14px;
  font-weight: 700;
}

.page-home .hero-match-label .mono {
  margin-left: 6px;
  font-weight: 400;
  color: var(--text-sub);
}

.page-home .hero-match-status {
  font-size: 11px;
  color: var(--text-sub);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 2px 8px;
}

.page-home .prob-row {
  display: grid;
  grid-template-columns: 46px 1fr 74px;
  gap: 10px;
  align-items: center;
  margin-top: 8px;
}

.page-home .prob-label {
  font-size: 12px;
  color: var(--text-sub);
}

.page-home .prob-track {
  height: 6px;
  background: rgba(147, 161, 196, 0.16);
  border-radius: 999px;
  overflow: hidden;
}

.page-home .prob-fill {
  display: block;
  height: 100%;
  background: var(--accent);
  border-radius: inherit;
  box-shadow: 0 0 8px rgba(var(--accent-rgb), 0.45);
}

.page-home .prob-fill--warm {
  background: var(--accent-warm);
  box-shadow: 0 0 8px rgba(var(--accent-warm-rgb), 0.4);
}

.page-home .prob-value {
  text-align: right;
  font-size: 13px;
  font-weight: 700;
}

.page-home .hero-meta {
  margin: 10px 0 0;
  font-size: 12px;
  color: var(--text-sub);
  letter-spacing: 0.04em;
}

.page-home .hero-card-foot {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
  border-top: 1px solid var(--line);
  padding-top: 12px;
  margin-top: 6px;
  color: var(--text-sub);
  font-size: 12px;
}

@media (min-width: 960px) {
  .page-home .hero-section {
    min-height: calc(100vh - 150px);
    padding: 48px 0 72px;
  }

  .page-home .hero-inner {
    grid-template-columns: 1.08fr 0.92fr;
    gap: 40px;
  }

  .page-home .hero-data-card {
    margin-top: 56px;
    padding: 24px;
    transform: translateY(-8px);
  }

  .page-home .hero-title {
    font-size: clamp(72px, 8vw, 108px);
  }
}

/* ---------- Data Ribbon ---------- */
.page-home .data-ribbon {
  border-bottom: 1px solid var(--line);
  background: rgba(var(--accent-rgb), 0.03);
}

.page-home .data-ribbon-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--line-soft);
}

.page-home .ribbon-cell {
  background: var(--site-bg);
  padding: 22px 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.page-home .ribbon-value {
  font-size: 30px;
  font-weight: 800;
  line-height: 1;
  color: var(--accent);
}

.page-home .ribbon-label {
  font-size: 13px;
  color: var(--text-sub);
}

@media (min-width: 768px) {
  .page-home .data-ribbon-inner {
    grid-template-columns: repeat(4, 1fr);
  }

  .page-home .ribbon-cell {
    padding: 28px 20px;
  }

  .page-home .ribbon-value {
    font-size: 38px;
  }
}

/* ---------- 双赛合并表 ---------- */
.page-home .merge-section {
  background: linear-gradient(
    180deg,
    transparent 0%,
    rgba(var(--accent-rgb), 0.03) 60%
  );
}

.page-home .section-head--merge {
  flex-direction: column;
}

.page-home .merge-icon img {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--line-soft);
  background: var(--float-bg);
  object-fit: cover;
}

@media (min-width: 600px) {
  .page-home .section-head--merge {
    flex-direction: row;
    align-items: center;
    gap: 18px;
  }

  .page-home .merge-icon img {
    width: 64px;
    height: 64px;
  }
}

.page-home .merge-heading {
  flex: 1;
}

.page-home .merge-table-card {
  background: var(--card-bg);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.22);
}

.page-home .merge-table-scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.page-home .merge-table {
  width: 100%;
  min-width: 680px;
  border-collapse: collapse;
  font-size: 14px;
}

.page-home .merge-table th {
  text-align: left;
  padding: 12px 14px;
  color: var(--text-sub);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.04em;
  border-bottom: 1px solid var(--line);
  background: rgba(42, 255, 107, 0.04);
  white-space: nowrap;
}

.page-home .merge-table td {
  padding: 12px 14px;
  border-bottom: 1px solid var(--line-soft);
  white-space: nowrap;
  transition: background 0.18s ease;
}

.page-home .merge-table tbody tr:last-child td {
  border-bottom: none;
}

.page-home .merge-table tbody tr:hover td {
  background: rgba(var(--accent-rgb), 0.07);
}

.page-home .injury-link {
  display: inline-block;
  margin-right: 5px;
  margin-bottom: 2px;
  padding: 2px 8px;
  font-size: 12px;
  color: var(--text-main);
  background: rgba(147, 161, 196, 0.1);
  border: 1px solid var(--line-soft);
  border-radius: 999px;
  text-decoration: none;
  transition: border-color 0.2s ease, color 0.2s ease;
}

.page-home .injury-link:hover {
  border-color: var(--accent-warm);
  color: var(--accent-warm);
}

.page-home .status-tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 3px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
}

.page-home .status-ok {
  background: rgba(var(--accent-rgb), 0.13);
  color: var(--accent);
}

.page-home .merge-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding: 14px 16px;
  border-top: 1px solid var(--line);
}

/* ---------- Feature Tiles ---------- */
.page-home .merge-features {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-top: 16px;
}

@media (min-width: 640px) {
  .page-home .merge-features {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }
}

.page-home .feature-tile {
  background: var(--float-bg);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-md);
  padding: 20px;
  transition: border-color 0.24s ease, transform 0.24s ease;
}

.page-home .feature-tile:hover {
  border-color: rgba(var(--accent-rgb), 0.5);
  transform: translateY(-3px);
}

.page-home .feature-tile h3 {
  margin: 0 0 8px;
  font-size: 15px;
  font-weight: 800;
}

.page-home .feature-tile p {
  margin: 0;
  color: var(--text-sub);
  font-size: 13px;
  line-height: 1.65;
}

/* ---------- BR 对照 + 伤停 ---------- */
.page-home .br-section {
  padding-top: 44px;
  padding-bottom: 44px;
  border-top: 1px solid var(--line);
  background: linear-gradient(
    180deg,
    rgba(var(--accent-rgb), 0.04),
    transparent 40%
  );
}

@media (min-width: 768px) {
  .page-home .br-section {
    padding-top: 64px;
    padding-bottom: 64px;
  }
}

.page-home .br-section-head {
  margin-bottom: 20px;
}

.page-home .br-section-head .section-head {
  margin-bottom: 0;
}

.page-home .br-scroll-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scroll-snap-type: x mandatory;
  padding-bottom: 10px;
}

.page-home .br-layout {
  display: flex;
  gap: 16px;
  width: max-content;
  min-width: 100%;
  padding-inline: 16px;
  box-sizing: border-box;
}

.page-home .br-layout > * {
  flex: 0 0 min(88vw, 540px);
  scroll-snap-align: start;
}

@media (min-width: 960px) {
  .page-home .br-scroll-wrap {
    overflow: visible;
    scroll-snap-type: none;
    padding-bottom: 0;
  }

  .page-home .br-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    gap: 20px;
    width: 100%;
    max-width: 1240px;
    margin-inline: auto;
    padding-inline: 20px;
  }

  .page-home .br-layout > * {
    flex: initial;
    min-width: 0;
  }
}

.page-home .br-card,
.page-home .injury-card {
  background: var(--card-bg);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.page-home .br-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 18px 18px 8px;
}

.page-home .br-card-head h3,
.page-home .injury-head h3 {
  margin: 0;
  font-size: 17px;
  font-weight: 800;
}

.page-home .br-visual {
  padding: 8px 18px;
}

.page-home .br-visual img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-md);
  border: 1px solid var(--line-soft);
  background: var(--float-bg);
}

.page-home .br-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  padding: 4px 18px 12px;
}

.page-home .br-col {
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-md);
  padding: 14px;
  background: rgba(10, 14, 26, 0.28);
}

.page-home .br-col--new {
  border-color: rgba(var(--accent-rgb), 0.42);
  background: rgba(var(--accent-rgb), 0.06);
}

.page-home .br-col h4 {
  margin: 0 0 10px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: var(--text-sub);
}

.page-home .br-col--new h4 {
  color: var(--accent);
}

.page-home .br-col dl {
  margin: 0;
}

.page-home .br-col dl div {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  padding: 6px 0;
  border-bottom: 1px dashed var(--line-soft);
  font-size: 13px;
}

.page-home .br-col dl div:last-child {
  border-bottom: none;
}

.page-home .br-col dt {
  color: var(--text-sub);
}

.page-home .br-col dd {
  margin: 0;
  font-weight: 700;
}

.page-home .br-diff {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  padding: 12px 18px 18px;
  color: var(--accent-warm);
  font-size: 13px;
  font-weight: 700;
}

.page-home .br-diff .mono {
  background: rgba(var(--accent-warm-rgb), 0.08);
  border: 1px solid rgba(var(--accent-warm-rgb), 0.24);
  border-radius: 999px;
  padding: 3px 9px;
}

/* ---------- Injury Card ---------- */
.page-home .injury-card {
  position: relative;
  display: flex;
  flex-direction: column;
}

.page-home .injury-bg-layer {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.page-home .injury-bg-layer img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.18;
}

.page-home .injury-content {
  position: relative;
  z-index: 1;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex: 1;
}

.page-home .injury-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
}

.page-home .injury-head p {
  margin: 6px 0 0;
  color: var(--text-sub);
  font-size: 13px;
  line-height: 1.6;
}

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

.page-home .injury-list li {
  display: grid;
  grid-template-columns: 40px 64px 1fr auto;
  gap: 10px;
  align-items: center;
  padding: 11px 12px;
  background: rgba(10, 14, 26, 0.46);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-sm);
  transition: border-color 0.2s ease, background 0.2s ease;
  scroll-margin-top: 140px;
}

.page-home .injury-list li:hover {
  border-color: rgba(var(--accent-warm-rgb), 0.5);
  background: rgba(var(--accent-warm-rgb), 0.06);
}

.page-home .injury-index {
  color: var(--text-sub);
  font-size: 12px;
}

.page-home .injury-mark {
  display: inline-flex;
  justify-content: center;
  padding: 3px 6px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.page-home .mark-out {
  background: rgba(var(--accent-warm-rgb), 0.14);
  color: var(--accent-warm);
}

.page-home .mark-question {
  background: rgba(147, 161, 196, 0.18);
  color: var(--text-main);
}

.page-home .mark-return {
  background: rgba(var(--accent-rgb), 0.16);
  color: var(--accent);
}

.page-home .injury-text {
  font-size: 13px;
  color: var(--text-main);
  line-height: 1.4;
}

.page-home .injury-prob {
  text-align: right;
  font-size: 13px;
  font-weight: 800;
  color: var(--text-sub);
}

.page-home .injury-content .btn {
  align-self: flex-start;
}

/* ---------- 更新进度 ---------- */
.page-home .progress-section {
  border-top: 1px solid var(--line);
}

.page-home .section-head--progress {
  flex-direction: column;
  align-items: flex-start;
}

.page-home .section-head--progress .btn {
  margin-top: 4px;
}

@media (min-width: 600px) {
  .page-home .section-head--progress {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .page-home .section-head--progress .btn {
    margin-left: auto;
  }
}

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

@media (min-width: 760px) {
  .page-home .progress-grid-home {
    grid-template-columns: 0.9fr 1fr 1fr 1fr;
  }
}

.page-home .round-state {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 24px;
  border-radius: var(--radius-lg);
  background: linear-gradient(
    145deg,
    rgba(var(--accent-rgb), 0.16),
    rgba(10, 14, 26, 0.72)
  );
  border: 1px solid rgba(var(--accent-rgb), 0.34);
}

.page-home .round-num {
  font-size: 96px;
  line-height: 1;
  font-weight: 900;
  color: var(--accent);
  letter-spacing: -0.03em;
  text-shadow: 0 0 26px rgba(var(--accent-rgb), 0.3);
}

.page-home .round-label {
  font-size: 14px;
  font-weight: 800;
  color: var(--text-main);
}

.page-home .round-status {
  font-size: 13px;
  color: var(--accent);
  font-weight: 700;
  margin-bottom: 8px;
}

.page-home .text-link {
  color: var(--text-sub);
  font-size: 13px;
  text-decoration: none;
  font-weight: 700;
  transition: color 0.2s ease;
}

.page-home .text-link:hover {
  color: var(--accent);
}

.page-home .update-rhythm {
  background: var(--card-bg);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-md);
  padding: 20px;
  transition: border-color 0.24s ease, transform 0.24s ease;
}

.page-home .update-rhythm:hover {
  border-color: rgba(var(--accent-rgb), 0.4);
  transform: translateY(-3px);
}

.page-home .update-rhythm h3 {
  margin: 0 0 8px;
  font-size: 15px;
  font-weight: 800;
}

.page-home .update-rhythm p {
  margin: 0;
  color: var(--text-sub);
  font-size: 13px;
  line-height: 1.7;
}

/* ---------- 全站索引 ---------- */
.page-home .core-links-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

@media (min-width: 800px) {
  .page-home .core-links-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
  }
}

.page-home .core-link-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 20px;
  background: var(--float-bg);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-md);
  text-decoration: none;
  color: var(--text-main);
  position: relative;
  overflow: hidden;
  transition: border-color 0.24s ease, transform 0.24s ease,
    box-shadow 0.24s ease;
}

.page-home .core-link-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 0;
  background: var(--accent);
  transition: height 0.28s ease;
}

.page-home .core-link-card:hover {
  border-color: rgba(var(--accent-rgb), 0.48);
  transform: translateY(-4px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.24);
}

.page-home .core-link-card:hover::before {
  height: 100%;
}

.page-home .core-link-index {
  font-size: 13px;
  color: var(--accent);
  font-weight: 700;
}

.page-home .core-link-title {
  font-size: 16px;
  font-weight: 800;
}

.page-home .core-link-desc {
  font-size: 13px;
  color: var(--text-sub);
  line-height: 1.6;
}

/* ---------- Motion 兼容 ---------- */
@keyframes home-shimmer {
  0% {
    left: -70%;
  }
  55%,
  100% {
    left: 130%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .page-home *,
  .page-home *::before,
  .page-home *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
