/* ========== page-home 页面专属样式 ========== */
.page-home {
  --home-deep-green: #0B3D2E;
  --home-gold: #D4AF37;
  --home-charcoal: #1A1A1A;
  --home-orange: #FF6B35;
  --home-white: #FFFFFF;
  --home-teal: #0F4C5C;
  --home-ink: #111111;
  --home-parchment: #F5F0E6;
  --home-wine: #800020;
  --home-radius: 2px;
  background-color: var(--home-charcoal);
  color: var(--home-white);
  overflow-x: hidden;
}

.page-home .container {
  width: min(100% - 2rem, var(--content-width, 1240px));
  margin-inline: auto;
}

.page-home .section-label {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-family: var(--font-head, "Barlow Condensed", "Noto Sans SC", sans-serif);
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  color: var(--home-gold);
  margin-bottom: 0.75rem;
}

.page-home .section-label::before {
  content: "";
  display: inline-block;
  width: 2.5rem;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--home-gold), transparent);
}

.page-home h1,
.page-home h2 {
  font-family: var(--font-head, "Barlow Condensed", "Noto Sans SC", sans-serif);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: 0.01em;
  margin-bottom: 1.25rem;
  color: var(--home-white);
}

.page-home h1 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
}

.page-home h2 {
  font-size: clamp(2rem, 4vw, 3.25rem);
}

.page-home p {
  font-family: var(--font-body, "Inter", "Noto Sans SC", sans-serif);
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(245, 240, 230, 0.88);
}

.page-home .btn {
  display: inline-block;
  font-family: var(--font-body, "Inter", "Noto Sans SC", sans-serif);
  font-size: 0.9375rem;
  font-weight: 600;
  padding: 0.875rem 1.75rem;
  border-radius: var(--radius-pill, 999px);
  text-decoration: none;
  transition: background-color var(--transition, 200ms ease), transform var(--transition, 200ms ease), box-shadow var(--transition, 200ms ease);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.page-home .btn:hover,
.page-home .btn:focus-visible {
  transform: translateY(-2px);
}

.page-home .btn--accent {
  background-color: var(--home-orange);
  color: var(--home-ink);
  border-color: var(--home-orange);
  box-shadow: 0 8px 24px rgba(255, 107, 53, 0.3);
}

.page-home .btn--accent:hover {
  box-shadow: 0 12px 32px rgba(255, 107, 53, 0.45);
}

.page-home .btn--outline {
  background-color: transparent;
  color: var(--home-gold);
  border-color: var(--home-gold);
}

.page-home .btn--outline:hover {
  background-color: rgba(212, 175, 55, 0.12);
}

.page-home .btn--gold {
  background-color: var(--home-gold);
  color: var(--home-ink);
  border-color: var(--home-gold);
}

.page-home .btn--gold:hover {
  background-color: #e5c14f;
  box-shadow: 0 10px 28px rgba(212, 175, 55, 0.35);
}

/* ---------- Hero 首屏 ---------- */
.page-home .hero-panel {
  position: relative;
  background-color: var(--home-deep-green);
  padding: 6.5rem 0 4.5rem;
  overflow: hidden;
}

.page-home .hero-panel__bg {
  position: absolute;
  top: 0;
  right: -10%;
  width: 70%;
  height: 100%;
  overflow: hidden;
  clip-path: polygon(28% 0, 100% 0, 100% 100%, 6% 100%);
  opacity: 0.5;
}

.page-home .hero-panel__bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.1);
}

.page-home .hero-panel__shape {
  position: absolute;
  width: 620px;
  height: 620px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.22) 0%, transparent 60%);
  top: -180px;
  right: -160px;
  pointer-events: none;
}

.page-home .hero-panel__speed-line {
  position: absolute;
  left: 0;
  bottom: 4%;
  width: 100%;
  height: 180px;
  pointer-events: none;
}

.page-home .hero-panel__inner {
  position: relative;
  z-index: 2;
}

.page-home .hero-panel__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
}

.page-home .hero-panel__lead {
  max-width: 42rem;
  font-size: 1.125rem;
  line-height: 1.75;
  color: rgba(245, 240, 230, 0.9);
  margin-bottom: 1.75rem;
}

.page-home .hero-panel__meta-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.page-home .meta-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  background-color: rgba(26, 26, 26, 0.7);
  border: 1px solid rgba(212, 175, 55, 0.35);
  padding: 0.5rem 1rem;
  border-radius: var(--radius-pill, 999px);
  font-family: var(--font-num, "Roboto Mono", monospace);
  font-size: 0.8125rem;
  color: var(--home-parchment);
}

.page-home .meta-tag--hot {
  background-color: rgba(255, 107, 53, 0.18);
  border-color: var(--home-orange);
  color: var(--home-orange);
}

.page-home .hero-panel__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.page-home .rank-board {
  background-color: rgba(17, 17, 17, 0.82);
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 8px;
  box-shadow: var(--shadow-float, 0 14px 32px rgba(0, 0, 0, 0.38));
  backdrop-filter: blur(6px);
  padding: 1.5rem 1.25rem;
  position: relative;
  overflow: hidden;
}

.page-home .rank-board::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(to bottom, var(--home-gold), var(--home-orange));
}

.page-home .rank-board__header {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.page-home .rank-board__title {
  font-family: var(--font-head, "Barlow Condensed", "Noto Sans SC", sans-serif);
  font-size: 1.375rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--home-white);
}

.page-home .rank-board__pulse {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-num, "Roboto Mono", monospace);
  font-size: 0.75rem;
  color: var(--home-gold);
}

.page-home .rank-board__pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--home-gold);
  box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.6);
}

.page-home .rank-board__table {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.page-home .rank-board__row {
  display: grid;
  grid-template-columns: 2.5rem 1fr 3.5rem 3rem;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6875rem 0.625rem;
  background-color: rgba(255, 255, 255, 0.04);
  border-radius: 4px;
  border-left: 2px solid transparent;
  transition: background-color var(--transition, 200ms ease), border-color var(--transition, 200ms ease), transform var(--transition, 200ms ease);
}

.page-home .rank-board__row:not(.rank-board__row--head):hover,
.page-home .rank-board__row:not(.rank-board__row--head):focus-visible {
  background-color: rgba(15, 76, 92, 0.45);
  border-left-color: var(--home-gold);
  transform: translateX(4px);
  outline: none;
}

.page-home .rank-board__row--head {
  font-family: var(--font-num, "Roboto Mono", monospace);
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(245, 240, 230, 0.5);
  padding: 0.5rem 0.625rem;
  border-bottom: 1px solid rgba(212, 175, 55, 0.18);
  border-radius: 0;
}

.page-home .rank-board__pos {
  font-family: var(--font-num, "Roboto Mono", monospace);
  font-style: normal;
  font-weight: 700;
  font-size: 1rem;
  color: var(--home-parchment);
}

.page-home .rank-board__pos--gold {
  color: var(--home-gold);
}

.page-home .rank-board__pos--silver {
  color: #B0B7C3;
}

.page-home .rank-board__pos--bronze {
  color: #CD9A5B;
}

.page-home .rank-board__team {
  font-family: var(--font-body, "Inter", "Noto Sans SC", sans-serif);
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--home-white);
}

.page-home .rank-board__pts {
  font-family: var(--font-num, "Roboto Mono", monospace);
  font-size: 0.9375rem;
  font-weight: 600;
}

.page-home .rank-board__pts--num {
  color: var(--home-gold);
}

.page-home .rank-board__trend {
  font-family: var(--font-num, "Roboto Mono", monospace);
  font-size: 0.875rem;
  color: #2ECC71;
}

.page-home .rank-board__trend.trend--down {
  color: var(--home-wine);
}

.page-home .rank-board__footer {
  margin-top: 1.25rem;
  padding-top: 0.875rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8125rem;
  color: rgba(245, 240, 230, 0.6);
}

.page-home .rank-board__link {
  font-family: var(--font-body, "Inter", "Noto Sans SC", sans-serif);
  color: var(--home-gold);
  text-decoration: none;
  font-weight: 600;
}

.page-home .rank-board__link:hover {
  text-decoration: underline;
}

/* ---------- Timeline 时间线 ---------- */
.page-home .timeline-section {
  position: relative;
  background-color: var(--home-parchment);
  color: var(--home-ink);
  padding: 4.5rem 0 3.5rem;
}

.page-home .timeline-section::before {
  content: "";
  position: absolute;
  top: 0;
  right: 5%;
  width: 24%;
  height: 100%;
  background-image: linear-gradient(45deg, rgba(11, 61, 46, 0.06) 25%, transparent 25%, transparent 50%, rgba(11, 61, 46, 0.06) 50%, rgba(11, 61, 46, 0.06) 75%, transparent 75%, transparent);
  background-size: 16px 16px;
  pointer-events: none;
}

.page-home .timeline-section .container {
  position: relative;
  z-index: 1;
}

.page-home .timeline-section h2,
.page-home .timeline-section p {
  color: var(--home-ink);
}

.page-home .timeline-section .section-label__inner {
  color: var(--home-deep-green);
}

.page-home .section-head {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-bottom: 2.75rem;
}

.page-home .section-head__desc {
  max-width: 36rem;
  font-size: 1.0625rem;
}

.page-home .timeline-flow {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin-bottom: 3rem;
}

.page-home .timeline-flow__item {
  position: relative;
  padding: 1.5rem 1.5rem 1.5rem 2.75rem;
  background-color: var(--home-white);
  border: 1px solid rgba(11, 61, 46, 0.12);
  border-radius: 6px;
  box-shadow: 0 4px 14px rgba(17, 17, 17, 0.06);
  transition: transform var(--transition, 200ms ease), box-shadow var(--transition, 200ms ease);
}

.page-home .timeline-flow__item:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(17, 17, 17, 0.1);
}

.page-home .tick-line {
  position: absolute;
  left: 1rem;
  top: 1.75rem;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: var(--home-gold);
  box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.22);
}

.page-home .tick-line--orange {
  background-color: var(--home-orange);
  box-shadow: 0 0 0 4px rgba(255, 107, 53, 0.2);
}

.page-home .timeline-flow__time {
  font-family: var(--font-num, "Roboto Mono", monospace);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--home-deep-green);
  margin-bottom: 0.25rem;
}

.page-home .timeline-flow__label {
  font-family: var(--font-head, "Barlow Condensed", "Noto Sans SC", sans-serif);
  font-weight: 600;
  font-size: 1.25rem;
  color: var(--home-ink);
  margin-bottom: 0.375rem;
}

.page-home .timeline-flow__desc {
  font-size: 0.9375rem;
  line-height: 1.6;
}

.page-home .timeline-section__img {
  max-width: 640px;
}

.page-home .timeline-section__img img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 6px;
  box-shadow: 0 10px 28px rgba(17, 17, 17, 0.16);
}

/* ---------- Intel 情报板块 ---------- */
.page-home .intel-section {
  background-color: var(--home-charcoal);
  padding: 4.5rem 0;
  background-image: radial-gradient(circle at 85% 10%, rgba(11, 61, 46, 0.8) 0%, transparent 40%);
}

.page-home .intel-section__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}

.page-home .intel-section__lead {
  font-size: 1.0625rem;
  margin-bottom: 1.5rem;
}

.page-home .intel-list {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.page-home .intel-list__item {
  position: relative;
  padding-left: 1.5rem;
  font-family: var(--font-body, "Inter", "Noto Sans SC", sans-serif);
  font-size: 0.9375rem;
  color: rgba(245, 240, 230, 0.9);
}

.page-home .intel-list__item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5rem;
  width: 0.75rem;
  height: 0.75rem;
  background-image: linear-gradient(135deg, var(--home-gold) 50%, transparent 50%);
  transform: rotate(45deg);
}

.page-home .intel-section__visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.page-home .intel-gauge {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  border: 3px solid var(--home-gold);
  position: relative;
  background:
    linear-gradient(135deg, rgba(212, 175, 55, 0.08) 25%, transparent 25%) 0 0 / 20px 20px,
    linear-gradient(225deg, rgba(212, 175, 55, 0.08) 25%, transparent 25%) 0 0 / 20px 20px,
    rgba(17, 17, 17, 0.9);
}

.page-home .intel-gauge::after {
  content: "";
  position: absolute;
  inset: -12px;
  border-radius: 50%;
  border: 1px dashed rgba(255, 107, 53, 0.45);
  animation: home-rotate 30s linear infinite;
}

@keyframes home-rotate {
  to { transform: rotate(360deg); }
}

.page-home .intel-gauge__unit {
  font-size: 0.875rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--home-gold);
  margin-bottom: 0.25rem;
}

.page-home .intel-gauge__num {
  font-family: var(--font-num, "Roboto Mono", monospace);
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1;
  color: var(--home-white);
}

.page-home .intel-gauge__num span {
  font-size: 1.25rem;
  color: var(--home-orange);
  margin-left: 0.25rem;
}

.page-home .intel-gauge__label {
  font-size: 0.8125rem;
  color: rgba(245, 240, 230, 0.7);
}

.page-home .intel-section__data-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  width: 100%;
}

.page-home .intel-section__data-cards .data-card {
  background-color: rgba(15, 76, 92, 0.5);
  border: 1px solid rgba(212, 175, 55, 0.18);
  border-radius: 6px;
  padding: 1.25rem 0.5rem;
  text-align: center;
}

.page-home .intel-section__data-cards .data-card__number {
  display: block;
  font-family: var(--font-num, "Roboto Mono", monospace);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--home-gold);
  line-height: 1.2;
  margin-bottom: 0.375rem;
}

.page-home .intel-section__data-cards .data-card__label {
  font-size: 0.75rem;
  color: rgba(245, 240, 230, 0.75);
}

/* ---------- Directory 目录板块 ---------- */
.page-home .directory-section {
  position: relative;
  padding: 4.5rem 0;
  background-color: var(--home-deep-green);
  overflow: hidden;
}

.page-home .directory-section::after {
  content: "";
  position: absolute;
  bottom: -40%;
  left: -10%;
  width: 70%;
  height: 70%;
  background-image: radial-gradient(circle, rgba(212, 175, 55, 0.12) 0%, transparent 60%);
  pointer-events: none;
}

.page-home .directory-section__card {
  position: relative;
  z-index: 1;
  max-width: 52rem;
  margin-inline: auto;
  background-color: rgba(26, 26, 26, 0.8);
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-left: 6px solid var(--home-gold);
  border-radius: 8px;
  padding: 2.5rem 1.75rem;
  box-shadow: var(--shadow-float, 0 14px 32px rgba(0, 0, 0, 0.38));
}

.page-home .directory-section__desc {
  font-size: 1.0625rem;
  margin-bottom: 1.75rem;
}

.page-home .directory-section__routes {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.75rem;
}

.page-home .route-chip {
  font-family: var(--font-body, "Inter", "Noto Sans SC", sans-serif);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--home-parchment);
  background-color: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-pill, 999px);
  padding: 0.625rem 1.25rem;
  text-decoration: none;
  transition: background-color var(--transition, 200ms ease), border-color var(--transition, 200ms ease);
}

.page-home .route-chip:hover,
.page-home .route-chip--active {
  background-color: rgba(212, 175, 55, 0.16);
  border-color: var(--home-gold);
  color: var(--home-gold);
}

.page-home .panel-tip {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  padding: 0.875rem 1rem;
  background-color: rgba(255, 107, 53, 0.12);
  border: 1px dashed rgba(255, 107, 53, 0.4);
  border-radius: 6px;
}

.page-home .panel-tip__arrow {
  font-size: 1.25rem;
  color: var(--home-orange);
  flex-shrink: 0;
}

.page-home .panel-tip__text {
  font-size: 0.875rem;
  color: rgba(245, 240, 230, 0.9);
  margin: 0;
}

/* ---------- Season 历史战绩 ---------- */
.page-home .season-section {
  position: relative;
  background-color: var(--home-ink);
  padding: 4.5rem 0;
}

.page-home .season-section__head {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.page-home .season-section__desc {
  max-width: 36rem;
}

.page-home .season-layer {
  position: relative;
  border: 1px solid rgba(212, 175, 55, 0.16);
  border-radius: 8px;
  background-color: rgba(26, 26, 26, 0.65);
  padding: 1.75rem 1rem;
  overflow: hidden;
}

.page-home .season-layer__backdrop {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.15;
  background-image: linear-gradient(120deg, rgba(212, 175, 55, 0.3) 0%, transparent 35%);
}

.page-home .season-layer__stamp {
  position: absolute;
  right: -1.5rem;
  top: 50%;
  transform: translateY(-50%) rotate(-12deg);
  font-family: var(--font-head, "Barlow Condensed", "Noto Sans SC", sans-serif);
  font-size: 6rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: rgba(212, 175, 55, 0.55);
  pointer-events: none;
}

.page-home .season-tabs {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.page-home .season-tab {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  padding: 0.625rem 1rem;
  cursor: default;
  transition: background-color var(--transition, 200ms ease), border-color var(--transition, 200ms ease);
}

.page-home .season-tab--active {
  background-color: rgba(212, 175, 55, 0.16);
  border-color: var(--home-gold);
}

.page-home .season-tab__year {
  font-family: var(--font-num, "Roboto Mono", monospace);
  font-weight: 700;
  font-size: 1.125rem;
  color: var(--home-white);
}

.page-home .season-tab__badge {
  font-size: 0.6875rem;
  color: var(--home-gold);
  background-color: rgba(212, 175, 55, 0.18);
  padding: 0.1875rem 0.5rem;
  border-radius: var(--radius-pill, 999px);
}

.page-home .season-months {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.625rem;
}

.page-home .season-month {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 4px;
  padding: 0.75rem 0.875rem;
  text-decoration: none;
  transition: background-color var(--transition, 200ms ease), border-color var(--transition, 200ms ease), transform var(--transition, 200ms ease);
}

.page-home .season-month:hover,
.page-home .season-month:focus-visible {
  background-color: rgba(15, 76, 92, 0.6);
  border-color: rgba(212, 175, 55, 0.5);
  transform: translateY(-2px);
  outline: none;
}

.page-home .season-month__label {
  font-family: var(--font-body, "Inter", "Noto Sans SC", sans-serif);
  font-weight: 500;
  font-size: 0.9375rem;
  color: var(--home-white);
}

.page-home .season-month__count {
  font-family: var(--font-num, "Roboto Mono", monospace);
  font-size: 0.8125rem;
  color: var(--home-gold);
}

.page-home .season-section__note {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-top: 1.5rem;
  padding: 1rem 1.25rem;
  background-color: rgba(212, 175, 55, 0.08);
  border-left: 3px solid var(--home-gold);
  border-radius: 0 4px 4px 0;
}

.page-home .season-section__note svg {
  flex-shrink: 0;
  margin-top: 0.25rem;
}

.page-home .season-section__note p {
  font-size: 0.9375rem;
  color: rgba(245, 240, 230, 0.88);
  margin: 0;
}

/* ---------- Video 视频归档 ---------- */
.page-home .video-section {
  background-color: var(--home-parchment);
  color: var(--home-ink);
  padding: 4.5rem 0;
}

.page-home .video-section h2,
.page-home .video-section p {
  color: var(--home-ink);
}

.page-home .video-section__head {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.page-home .video-section__desc {
  max-width: 36rem;
}

.page-home .video-browser {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.page-home .video-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.page-home .video-tag {
  font-family: var(--font-body, "Inter", "Noto Sans SC", sans-serif);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--home-deep-green);
  background-color: var(--home-white);
  border: 1px solid rgba(11, 61, 46, 0.2);
  border-radius: var(--radius-pill, 999px);
  padding: 0.5625rem 1.25rem;
  cursor: default;
  transition: background-color var(--transition, 200ms ease), color var(--transition, 200ms ease), border-color var(--transition, 200ms ease);
}

.page-home .video-tag--active {
  background-color: var(--home-deep-green);
  border-color: var(--home-deep-green);
  color: var(--home-white);
}

.page-home .video-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

.page-home .video-card {
  background-color: var(--home-white);
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid rgba(11, 61, 46, 0.1);
  box-shadow: 0 4px 14px rgba(17, 17, 17, 0.05);
  transition: transform var(--transition, 200ms ease), box-shadow var(--transition, 200ms ease);
}

.page-home .video-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(17, 17, 17, 0.12);
}

.page-home .video-card__thumb {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

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

.page-home .video-card__duration {
  position: absolute;
  right: 0.75rem;
  bottom: 0.75rem;
  font-family: var(--font-num, "Roboto Mono", monospace);
  font-size: 0.75rem;
  font-weight: 700;
  background-color: rgba(17, 17, 17, 0.82);
  color: var(--home-gold);
  padding: 0.25rem 0.5rem;
  border-radius: 3px;
}

.page-home .video-card__title {
  font-family: var(--font-head, "Barlow Condensed", "Noto Sans SC", sans-serif);
  font-size: 1.25rem;
  font-weight: 600;
  padding: 1rem 1.25rem 0.25rem;
  margin: 0;
  color: var(--home-ink);
}

.page-home .video-card__meta {
  font-size: 0.8125rem;
  color: rgba(17, 17, 17, 0.65);
  padding: 0 1.25rem 1.25rem;
  margin: 0;
}

/* ---------- Promise 承诺条 ---------- */
.page-home .promise-strip {
  background-color: var(--home-charcoal);
  padding: 3rem 0;
  border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.page-home .promise-strip .container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
}

.page-home .promise-strip__text {
  font-family: var(--font-head, "Barlow Condensed", "Noto Sans SC", sans-serif);
  font-size: 1.375rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--home-gold);
  margin: 0;
}

/* ---------- 桌面端增强 ---------- */
@media (min-width: 768px) {
  .page-home .hero-panel {
    padding: 7.5rem 0 5.5rem;
  }

  .page-home .hero-panel__grid {
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
    gap: 3rem;
  }

  .page-home .timeline-flow {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
  }

  .page-home .timeline-flow__item {
    padding: 1.75rem 1.5rem 1.75rem 3rem;
  }

  .page-home .section-head {
    grid-template-columns: 1fr auto;
    align-items: end;
  }

  .page-home .season-section__head {
    grid-template-columns: 1fr auto;
    align-items: end;
  }

  .page-home .season-months {
    grid-template-columns: repeat(3, 1fr);
  }

  .page-home .intel-section__grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 0.9fr);
    align-items: center;
    gap: 3.5rem;
  }

  .page-home .intel-section__data-cards .data-card__number {
    font-size: 2rem;
  }

  .page-home .video-section__head {
    grid-template-columns: 1fr auto;
    align-items: end;
  }

  .page-home .video-list {
    grid-template-columns: repeat(2, 1fr);
  }

  .page-home .directory-section__card {
    padding: 3.25rem 3rem;
  }
}

@media (min-width: 1024px) {
  .page-home .video-list {
    grid-template-columns: repeat(4, 1fr);
  }

  .page-home .season-months {
    grid-template-columns: repeat(4, 1fr);
  }

  .page-home .intel-gauge {
    width: 220px;
    height: 220px;
  }

  .page-home .intel-gauge__num {
    font-size: 4rem;
  }

  .page-home .season-layer {
    padding: 2.5rem 2rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .page-home .intel-gauge::after {
    animation: none;
  }

  .page-home .rank-board__row,
  .page-home .season-month,
  .page-home .timeline-flow__item,
  .page-home .video-card {
    transition: none;
  }
}
