.page-home {
  --cut: 12deg;
  --home-gap: 14px;
}

/* ---------- 面包屑 ---------- */
.page-home .breadcrumb {
  padding: 4px 0 16px;
}

/* ---------- 拼贴首屏 ---------- */
.page-home .hero-collage {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--home-gap);
  margin-bottom: 48px;
}

.page-home .hero-main {
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: 380px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--ink-2);
}

.page-home .hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.55;
}

.page-home .hero-veil {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(130% 95% at 10% 100%, rgba(4, 20, 15, 0.95) 0%, rgba(4, 20, 15, 0.6) 48%, rgba(4, 20, 15, 0.2) 100%),
    linear-gradient(180deg, rgba(4, 20, 15, 0.15) 0%, rgba(4, 20, 15, 0.82) 100%);
}

.page-home .hero-copy {
  position: relative;
  z-index: 1;
  padding: clamp(20px, 4.5vw, 44px);
  max-width: 46ch;
}

.page-home .hero-copy .page-title {
  margin: 8px 0 12px;
}

.page-home .hero-card {
  position: relative;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--ink-2);
  overflow: hidden;
}

.page-home .hero-card--a::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 4px;
  background: linear-gradient(180deg, var(--coral), var(--coral-soft));
}

.page-home .hero-card .stat-label {
  margin: 0 0 10px;
  font-size: 14px;
  color: var(--muted);
}

.page-home .hero-card .stat {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin: 0 0 12px;
}

.page-home .hero-card .num--lg {
  font-family: var(--font-mono);
  font-variant-numeric: tabular-nums;
  font-size: clamp(42px, 8vw, 64px);
  line-height: 0.95;
  letter-spacing: -0.02em;
  color: var(--cyan);
}

.page-home .stat-unit {
  font-family: var(--font-mono);
  font-size: 15px;
  color: var(--muted);
}

.page-home .hero-note {
  margin: 0 0 8px;
  font-size: 14px;
  line-height: 1.7;
  color: var(--muted);
}

.page-home .cut-tag {
  display: inline-block;
  padding: 4px 12px 4px 10px;
  background: var(--coral);
  color: #1a0703;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.02em;
  clip-path: polygon(0 0, 100% 0, calc(100% - 10px) 100%, 0 100%);
}

.page-home .pos-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.page-home .pos-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 9px 0;
  border-bottom: 1px dashed var(--line);
  font-size: 15px;
}

.page-home .pos-list li:last-child {
  border-bottom: 0;
}

.page-home .pos-list .num {
  font-family: var(--font-mono);
  font-variant-numeric: tabular-nums;
  font-size: 17px;
  color: var(--cyan);
}

.page-home .hero-status {
  margin: 0;
  padding: 11px 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  background: linear-gradient(90deg, rgba(42, 27, 74, 0.85), rgba(42, 27, 74, 0.2));
  font-family: var(--font-mono);
  font-size: 13px;
  line-height: 1.6;
  color: var(--muted);
  white-space: nowrap;
  overflow-x: auto;
  scrollbar-width: thin;
}

/* ---------- 章节骨架 ---------- */
.page-home .section {
  margin-bottom: 60px;
}

.page-home .section-head {
  margin: 16px 0 22px;
  display: grid;
  gap: 6px;
  max-width: 68ch;
}

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

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

.page-home .band {
  border-radius: 2px;
}

/* ---------- 筛选与摘要卡 ---------- */
.page-home .filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}

.page-home .filter-btn {
  padding: 7px 15px;
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  background: var(--glass);
  color: var(--text);
  font-family: var(--font-mono);
  font-size: 13px;
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.page-home .filter-btn[aria-pressed="true"] {
  background: var(--cyan);
  border-color: var(--cyan);
  color: #04140f;
}

.page-home .filter-btn:hover {
  border-color: var(--cyan-deep);
}

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

.page-home .brief {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 9px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--ink-2);
  transition: border-color 0.2s ease, background 0.25s ease;
}

.page-home .brief:hover,
.page-home .brief:focus-within {
  border-color: var(--cyan-deep);
  background: linear-gradient(155deg, rgba(43, 245, 200, 0.08), var(--ink-2) 62%);
}

.page-home .brief-tag {
  margin: 0;
  align-self: flex-start;
}

.page-home .brief-title {
  margin: 0;
  font-size: 19px;
  letter-spacing: -0.01em;
}

.page-home .brief-text {
  margin: 0;
  font-size: 15.5px;
  line-height: 1.72;
  color: var(--text);
}

.page-home .brief-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  font-family: var(--font-mono);
  font-size: 12.5px;
  color: var(--muted);
  opacity: 0.8;
  transition: opacity 0.2s ease;
}

.page-home .brief:hover .brief-meta,
.page-home .brief:focus-within .brief-meta {
  opacity: 1;
}

.page-home .brief-meta .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--cyan);
  flex: none;
  animation: home-pulse 2.4s ease-in-out infinite;
}

.page-home .brief-link {
  margin-top: auto;
  align-self: flex-start;
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--cyan);
  text-decoration: none;
  border-bottom: 1px solid rgba(43, 245, 200, 0.4);
  padding-bottom: 2px;
}

.page-home .brief-link:hover {
  border-bottom-color: var(--cyan);
}

@keyframes home-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(43, 245, 200, 0.35); }
  50% { box-shadow: 0 0 0 6px rgba(43, 245, 200, 0); }
}

/* ---------- 时间轴 + 数据面板 ---------- */
.page-home .pair-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.page-home .pair-left .media {
  margin-bottom: 20px;
}

.page-home .flow {
  list-style: none;
  margin: 0;
  padding: 0 0 0 8px;
}

.page-home .flow-item {
  position: relative;
  padding: 0 0 20px 22px;
  border-left: 1px solid var(--line);
}

.page-home .flow-item:last-child {
  padding-bottom: 4px;
}

.page-home .flow-item::before {
  content: "";
  position: absolute;
  top: 5px;
  left: -8px;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: var(--ink-deep);
  border: 2px solid var(--cyan);
  animation: home-pulse 2.4s ease-in-out infinite;
}

.page-home .flow-item--open::before {
  border-color: var(--coral);
  box-shadow: 0 0 0 4px rgba(255, 107, 74, 0.14);
}

.page-home .flow-step {
  margin: 0 0 5px;
  font-family: var(--font-mono);
  font-size: 12.5px;
  letter-spacing: 0.02em;
  color: var(--cyan);
}

.page-home .flow-item--open .flow-step {
  color: var(--coral-soft);
}

.page-home .flow-text {
  margin: 0 0 6px;
  font-size: 15.5px;
  line-height: 1.7;
}

.page-home .flow-state {
  margin: 0;
  font-family: var(--font-mono);
  font-size: 12.5px;
  color: var(--muted);
}

.page-home .flow-state--pending {
  color: var(--coral);
}

.page-home .data-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 15px;
}

.page-home .data-table th,
.page-home .data-table td {
  padding: 12px 14px;
  border-bottom: 1px solid var(--line);
  text-align: left;
}

.page-home .data-table thead th {
  font-family: var(--font-mono);
  font-size: 12.5px;
  letter-spacing: 0.04em;
  color: var(--muted);
  font-weight: 500;
}

.page-home .data-table .is-num {
  text-align: right;
  font-family: var(--font-mono);
  font-variant-numeric: tabular-nums;
}

.page-home .data-table .row-total th,
.page-home .data-table .row-total td {
  border-bottom: 0;
  color: var(--cyan);
}

.page-home .data-table caption {
  caption-side: bottom;
  text-align: left;
  padding-top: 12px;
  font-size: 13px;
  line-height: 1.65;
  color: var(--muted);
}

.page-home .panel-note {
  margin: 16px 0 0;
  font-size: 14px;
  line-height: 1.75;
  color: var(--muted);
  border-left: 2px solid var(--line);
  padding-left: 14px;
}

/* ---------- 赔率区块 ---------- */
.page-home .odds-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
}

.page-home .odds-side .media {
  margin-bottom: 16px;
}

.page-home .odds-side .btn {
  margin-top: 14px;
}

/* ---------- 四栏入口 ---------- */
.page-home .lane-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.page-home .lane {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 22px 20px 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--ink-2);
  color: var(--text);
  text-decoration: none;
  overflow: hidden;
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.page-home .lane::after {
  content: "";
  position: absolute;
  right: -26px;
  bottom: -22px;
  width: 130px;
  height: 96px;
  background: var(--cyan);
  opacity: 0.07;
  clip-path: polygon(30% 0, 100% 0, 70% 100%, 0 100%);
  transition: opacity 0.25s ease;
}

.page-home .lane:hover,
.page-home .lane:focus-visible {
  border-color: var(--cyan-deep);
}

.page-home .lane:hover::after {
  opacity: 0.14;
}

.page-home .lane-num {
  margin: 0;
  font-family: var(--font-mono);
  font-variant-numeric: tabular-nums;
  font-size: 26px;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--cyan);
}

.page-home .lane-title {
  margin: 0;
  font-size: 18px;
  letter-spacing: -0.01em;
}

.page-home .lane-text {
  margin: 0;
  font-size: 15px;
  line-height: 1.72;
  color: var(--text);
}

.page-home .lane-meta {
  margin: auto 0 0;
  font-family: var(--font-mono);
  font-size: 12.5px;
  color: var(--muted);
}

/* ---------- 订阅收束 ---------- */
.page-home .cta-band {
  position: relative;
  overflow: hidden;
  padding: clamp(24px, 5vw, 48px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--ink-2);
}

.page-home .cta-band > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.32;
}

.page-home .cta-veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(4, 20, 15, 0.96) 34%, rgba(58, 20, 32, 0.6) 100%);
}

.page-home .cta-inner {
  position: relative;
  z-index: 1;
  max-width: 62ch;
}

.page-home .cta-text {
  margin: 0 0 12px;
  font-size: 17px;
  line-height: 1.75;
}

.page-home .cta-note {
  margin: 0 0 20px;
  font-size: 14px;
  line-height: 1.75;
  color: var(--muted);
}

.page-home .cta-note a {
  color: var(--cyan);
  text-decoration: none;
  border-bottom: 1px solid rgba(43, 245, 200, 0.35);
}

.page-home .cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

/* ---------- 平板 ---------- */
@media (min-width: 760px) {
  .page-home .brief-grid {
    grid-template-columns: repeat(12, 1fr);
  }

  .page-home .brief--wide { grid-column: span 6; }
  .page-home .brief--half { grid-column: span 3; }
  .page-home .brief--mid { grid-column: span 4; }
  .page-home .brief--full { grid-column: span 8; }

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

  .page-home .odds-grid {
    grid-template-columns: repeat(12, 1fr);
    align-items: start;
  }

  .page-home .odds-table { grid-column: span 7; }
  .page-home .odds-side { grid-column: span 5; }
}

/* ---------- 桌面 ---------- */
@media (min-width: 900px) {
  .page-home .hero-collage {
    grid-template-columns: repeat(12, 1fr);
    gap: 18px;
  }

  .page-home .hero-main {
    grid-column: 1 / 8;
    grid-row: 1 / 3;
    min-height: 540px;
  }

  .page-home .hero-card--a {
    grid-column: 8 / 13;
    grid-row: 1;
  }

  .page-home .hero-card--b {
    grid-column: 8 / 13;
    grid-row: 2;
  }

  .page-home .hero-status {
    grid-column: 1 / 13;
    grid-row: 3;
    white-space: normal;
    overflow: visible;
  }
}

@media (min-width: 1000px) {
  .page-home .pair-grid {
    grid-template-columns: repeat(12, 1fr);
    gap: 28px;
  }

  .page-home .pair-left { grid-column: span 4; }
  .page-home .pair-right { grid-column: span 8; }

  .page-home .flow-item {
    padding-left: 26px;
  }
}

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

/* ---------- 动效降级 ---------- */
@media (prefers-reduced-motion: reduce) {
  .page-home .brief-meta .dot,
  .page-home .flow-item::before {
    animation: none;
  }

  .page-home .brief,
  .page-home .lane,
  .page-home .brief-meta,
  .page-home .lane::after {
    transition: none;
  }
}
