.page-home {
  position: relative;
  background: var(--bg-primary);
  color: var(--text-primary);
  overflow-x: hidden;
}
.page-home::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 220px;
  height: 8px;
  background: linear-gradient(90deg, var(--accent-green), var(--accent-orange), var(--accent-gold));
  z-index: 3;
  border-radius: 0 0 0 8px;
}
.page-home::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 8px;
  height: 100%;
  background: linear-gradient(180deg, var(--accent-green) 0%, var(--accent-orange) 48%, var(--accent-gold) 100%);
  opacity: 0.35;
  z-index: 2;
  pointer-events: none;
}
.page-home a {
  color: inherit;
  text-decoration: none;
}
.page-home img {
  max-width: 100%;
  height: auto;
}

/* ===== 首屏英雄区 ===== */
.page-home .home-hero {
  position: relative;
  min-height: 640px;
  display: flex;
  align-items: center;
  padding: 104px 20px 56px;
  overflow: hidden;
}
.page-home .hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
}
.page-home .hero-bg img {
  width: 100%;
  height: 100%;
  min-height: 640px;
  object-fit: cover;
  filter: blur(3px) brightness(0.52) saturate(1.1);
  display: block;
}
.page-home .hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(118deg, rgba(10, 14, 23, 0.96) 0%, rgba(10, 14, 23, 0.78) 46%, rgba(10, 14, 23, 0.62) 78%, rgba(10, 14, 23, 0.86) 100%),
    repeating-linear-gradient(-45deg, transparent 0 18px, rgba(57, 255, 20, 0.03) 18px 20px);
  z-index: -1;
}
.page-home .hero-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 36px;
  width: 100%;
}
.page-home .hero-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}
.page-home .hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-number);
  font-size: 13px;
  letter-spacing: 0.14em;
  color: var(--accent-green);
  background: rgba(57, 255, 20, 0.08);
  border: 1px solid rgba(57, 255, 20, 0.3);
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  text-transform: uppercase;
}
.page-home .hero-kicker::before {
  content: "";
  width: 8px;
  height: 8px;
  background: var(--accent-orange);
  transform: rotate(45deg);
}
.page-home .hero-copy h1 {
  margin: 0;
  font-family: var(--font-heading);
  font-size: clamp(30px, 5.6vw, 54px);
  line-height: 1.14;
  letter-spacing: 0.02em;
  text-wrap: balance;
}
.page-home .hero-copy h1::after {
  content: "";
  display: block;
  width: 96px;
  height: 6px;
  margin-top: 18px;
  background: linear-gradient(90deg, var(--accent-green), var(--accent-orange));
  border-radius: 4px;
}
.page-home .hero-lead {
  margin: 0;
  max-width: 58ch;
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.8;
  color: var(--text-secondary);
}
.page-home .hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 6px;
}
.page-home .hero-note {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-number);
  font-size: 12px;
  color: var(--text-secondary);
  padding-top: 8px;
  border-top: 1px dashed var(--border-muted);
  width: 100%;
}
.page-home .note-dot {
  width: 10px;
  height: 10px;
  background: var(--accent-gold);
  border-radius: 50%;
  box-shadow: 0 0 12px rgba(255, 215, 0, 0.5);
  flex-shrink: 0;
}

/* ===== 章节预览索引 ===== */
.page-home .hero-preview {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
.page-home .preview-item {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 16px 14px 14px;
  background: rgba(26, 32, 43, 0.72);
  border: 1px solid var(--border-muted);
  border-radius: var(--radius-card);
  overflow: hidden;
  transition: transform var(--ease), border-color var(--ease), background var(--ease);
}
.page-home .preview-item::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--accent-green), var(--accent-orange));
  opacity: 0;
  transition: opacity var(--ease);
}
.page-home .preview-item:hover {
  transform: translateY(-5px) rotate(-1.2deg);
  border-color: rgba(57, 255, 20, 0.6);
  background: rgba(26, 32, 43, 0.95);
}
.page-home .preview-item:hover::after {
  opacity: 1;
}
.page-home .preview-num {
  font-family: var(--font-number);
  font-size: 20px;
  font-weight: 700;
  color: transparent;
  -webkit-text-stroke: 1px var(--accent-green);
}
.page-home .preview-label {
  font-family: var(--font-heading);
  font-size: 15px;
  letter-spacing: 0.05em;
  color: var(--text-primary);
  margin-top: 6px;
}
.page-home .preview-desc {
  font-family: var(--font-body);
  font-size: 12px;
  color: var(--text-secondary);
}
.page-home .hero-preview .preview-item:nth-child(even) {
  transform: rotate(0.6deg);
}
.page-home .hero-preview .preview-item:nth-child(even):hover {
  transform: translateY(-5px) rotate(0.6deg);
}

/* ===== 左右分屏 ===== */
.page-home .home-split {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 44px;
  padding-top: 24px;
  padding-bottom: 40px;
}
.page-home .home-main {
  display: flex;
  flex-direction: column;
  gap: 44px;
}
.page-home .home-side {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

/* ===== 章节通用 ===== */
.page-home .home-section {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border-muted);
  border-radius: 18px;
  padding: 26px 20px 30px;
  box-shadow: var(--shadow-card);
}
.page-home .section-heading {
  margin-bottom: 20px;
}
.page-home .section-heading .section-kicker {
  display: inline-block;
  font-family: var(--font-number);
  font-size: 12px;
  letter-spacing: 0.12em;
  color: var(--accent-orange);
  background: rgba(255, 69, 0, 0.1);
  border-left: 4px solid var(--accent-orange);
  padding: 5px 12px;
  margin-bottom: 12px;
  text-transform: uppercase;
}
.page-home .section-heading h2 {
  margin: 0 0 10px;
  font-family: var(--font-heading);
  font-size: clamp(24px, 4vw, 34px);
  letter-spacing: 0.02em;
  line-height: 1.2;
}
.page-home .section-heading p {
  margin: 0;
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.75;
  color: var(--text-secondary);
}
.page-home .section-foot {
  margin-top: 22px;
  display: flex;
  justify-content: flex-end;
}

/* ===== 今日战报 ===== */
.page-home .section-reports::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-green) 0%, var(--accent-orange) 60%, transparent 100%);
  border-radius: 18px 18px 0 0;
}
.page-home .report-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 14px;
  margin-top: 18px;
}
.page-home .report-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: linear-gradient(145deg, rgba(17, 23, 34, 0.98), rgba(26, 32, 43, 0.9));
  border: 1px solid var(--border-muted);
  border-radius: var(--radius-card);
  padding: 18px 16px 16px;
  transition: transform var(--ease), border-color var(--ease), box-shadow var(--ease);
}
.page-home .report-card::before {
  content: "";
  position: absolute;
  top: 12px;
  bottom: 12px;
  left: -1px;
  width: 3px;
  background: var(--accent-green);
  border-radius: 0 4px 4px 0;
  opacity: 0;
  transition: opacity var(--ease);
}
.page-home .report-card:hover {
  transform: translateY(-4px) rotate(-1deg);
  border-color: rgba(57, 255, 20, 0.5);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.35), 0 0 0 1px rgba(57, 255, 20, 0.08);
}
.page-home .report-card:hover::before {
  opacity: 1;
}
.page-home .report-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.page-home .report-updated {
  font-family: var(--font-number);
  font-size: 12px;
  color: var(--text-secondary);
  background: rgba(176, 181, 189, 0.08);
  border-radius: var(--radius-pill);
  padding: 4px 10px;
}
.page-home .report-card h3 {
  margin: 4px 0 0;
  font-family: var(--font-heading);
  font-size: 18px;
  line-height: 1.35;
}
.page-home .report-card p {
  margin: 0;
  font-size: 13px;
  line-height: 1.7;
  color: var(--text-secondary);
}
.page-home .report-badges {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 2px;
}
.page-home .badge-mini {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-number);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  border-radius: 4px;
  padding: 3px 8px;
}
.page-home .badge-red {
  background: rgba(255, 69, 0, 0.18);
  color: var(--accent-orange);
  border: 1px solid rgba(255, 69, 0, 0.4);
}
.page-home .badge-yellow {
  background: rgba(255, 215, 0, 0.12);
  color: var(--accent-gold);
  border: 1px solid rgba(255, 215, 0, 0.3);
}
.page-home .card-link {
  align-self: flex-start;
  font-family: var(--font-number);
  font-size: 13px;
  color: var(--accent-green);
  border-bottom: 1px solid transparent;
  transition: border-color var(--ease), transform var(--ease);
  margin-top: 4px;
}
.page-home .card-link:hover {
  border-bottom-color: var(--accent-green);
  transform: translateX(4px);
}

/* ===== 场馆赛后分析 ===== */
.page-home .section-analysis {
  border-left: 4px solid var(--accent-orange);
}
.page-home .analysis-visual {
  position: relative;
  border-radius: var(--radius-card);
  overflow: hidden;
  border: 1px solid var(--border-muted);
}
.page-home .analysis-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(200deg, transparent 55%, rgba(10, 14, 23, 0.45) 100%);
  pointer-events: none;
}
.page-home .analysis-visual img {
  width: 100%;
  display: block;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 0.35s ease, border-color var(--ease);
}
.page-home .analysis-visual:hover img {
  transform: scale(1.02);
  border-color: var(--accent-gold);
}
.page-home .analysis-features {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 12px;
  margin-top: 18px;
}
.page-home .analysis-feature {
  background: rgba(10, 14, 23, 0.6);
  border: 1px solid var(--border-muted);
  border-radius: var(--radius-card);
  padding: 16px 14px;
  transition: border-color var(--ease), background var(--ease), transform var(--ease);
}
.page-home .analysis-feature:hover {
  border-color: rgba(255, 215, 0, 0.55);
  background: rgba(26, 32, 43, 0.9);
  transform: translateY(-3px);
}
.page-home .feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 10px;
  font-size: 14px;
  margin-bottom: 10px;
}
.page-home .feature-icon-green {
  background: rgba(57, 255, 20, 0.14);
  color: var(--accent-green);
  border: 1px solid rgba(57, 255, 20, 0.3);
}
.page-home .feature-icon-orange {
  background: rgba(255, 69, 0, 0.14);
  color: var(--accent-orange);
  border: 1px solid rgba(255, 69, 0, 0.3);
}
.page-home .feature-icon-gold {
  background: rgba(255, 215, 0, 0.12);
  color: var(--accent-gold);
  border: 1px solid rgba(255, 215, 0, 0.3);
}
.page-home .analysis-feature h3 {
  margin: 0 0 6px;
  font-family: var(--font-heading);
  font-size: 16px;
}
.page-home .analysis-feature p {
  margin: 0;
  font-size: 13px;
  line-height: 1.7;
  color: var(--text-secondary);
}

/* ===== 阵容确认 ===== */
.page-home .section-lineup {
  border-left: 4px solid var(--accent-gold);
}
.page-home .lineup-board {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 20px;
  align-items: center;
  background: rgba(10, 14, 23, 0.5);
  border: 1px solid var(--border-muted);
  border-radius: var(--radius-card);
  padding: 16px;
}
.page-home .lineup-svg {
  width: 100%;
  height: auto;
  border-radius: 12px;
  background:
    linear-gradient(rgba(57, 255, 20, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(57, 255, 20, 0.035) 1px, transparent 1px);
  background-size: 24px 24px;
  background-color: #0d121d;
}
.page-home .lineup-svg .field-line {
  fill: none;
  stroke: var(--border-muted);
  stroke-width: 2;
}
.page-home .lineup-svg .route-green {
  fill: none;
  stroke: var(--accent-green);
  stroke-width: 3;
  stroke-dasharray: 5 4;
  animation: dash-flow 1.2s linear infinite;
}
.page-home .lineup-svg .route-orange {
  fill: none;
  stroke: var(--accent-orange);
  stroke-width: 3;
  stroke-dasharray: 5 4;
  animation: dash-flow 1.4s linear infinite;
}
@keyframes dash-flow {
  to {
    stroke-dashoffset: -18;
  }
}
.page-home .lineup-svg .player-dot {
  stroke: #fff;
  stroke-width: 2.5;
}
.page-home .lineup-svg .player-dot-green {
  fill: var(--accent-green);
}
.page-home .lineup-svg .player-dot-orange {
  fill: var(--accent-orange);
}
.page-home .lineup-info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
}
.page-home .lineup-clock {
  font-family: var(--font-number);
  font-size: 26px;
  font-weight: 700;
  color: var(--accent-green);
  background: rgba(57, 255, 20, 0.08);
  border: 1px solid rgba(57, 255, 20, 0.25);
  border-radius: var(--radius-pill);
  padding: 6px 18px;
  letter-spacing: 0.04em;
}
.page-home .lineup-info p {
  margin: 0;
  font-size: 14px;
  line-height: 1.75;
  color: var(--text-secondary);
}
.page-home .lineup-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

/* ===== 侧边栏通用 ===== */
.page-home .side-card {
  position: relative;
  background: var(--bg-elevated);
  border: 1px solid var(--border-muted);
  border-radius: 16px;
  padding: 22px 18px 20px;
  overflow: hidden;
  transition: border-color var(--ease), box-shadow var(--ease);
}
.page-home .side-card:hover {
  border-color: rgba(57, 255, 20, 0.3);
}
.page-home .side-card-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}
.page-home .side-card-head .section-kicker {
  display: inline-block;
  font-family: var(--font-number);
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--accent-orange);
  background: rgba(255, 69, 0, 0.1);
  border-radius: 4px;
  padding: 4px 10px;
  white-space: nowrap;
  text-transform: uppercase;
}
.page-home .side-card-head h2 {
  margin: 0;
  font-family: var(--font-heading);
  font-size: 20px;
  letter-spacing: 0.03em;
  line-height: 1.3;
}
.page-home .side-intro {
  margin: 0 0 14px;
  font-size: 13px;
  line-height: 1.8;
  color: var(--text-secondary);
}
.page-home .side-list {
  list-style: none;
  margin: 0 0 16px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.page-home .side-list li {
  position: relative;
  padding-left: 18px;
  font-size: 13px;
  line-height: 1.65;
  color: var(--text-secondary);
}
.page-home .side-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  background: var(--accent-green);
  transform: rotate(45deg);
  opacity: 0.8;
}
.page-home .side-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-number);
  font-size: 13px;
  color: var(--accent-green);
  margin-top: 8px;
}
.page-home .side-link:hover {
  border-bottom: 1px solid var(--accent-green);
}
.page-home .btn-block {
  width: 100%;
  justify-content: center;
}

/* ===== 历史战绩 ===== */
.page-home .side-history {
  border-left: 4px solid var(--accent-orange);
}
.page-home .side-stat-row {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 16px;
  padding: 14px 12px;
  background: rgba(255, 215, 0, 0.06);
  border: 1px solid rgba(255, 215, 0, 0.22);
  border-radius: 12px;
}
.page-home .side-stat-num {
  font-family: var(--font-number);
  font-size: 32px;
  font-weight: 700;
  color: var(--accent-gold);
  line-height: 1;
}
.page-home .side-stat-label {
  font-size: 12px;
  color: var(--text-secondary);
}

/* ===== 华语体育资料库 ===== */
.page-home .side-database {
  border-left: 4px solid var(--accent-green);
}
.page-home .database-heat {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border-muted);
  margin-bottom: 12px;
}
.page-home .database-heat img {
  width: 100%;
  display: block;
  aspect-ratio: 8 / 5;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.page-home .database-heat:hover img {
  transform: scale(1.03);
}
.page-home .database-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 14px;
}
.page-home .database-meta span {
  font-family: var(--font-number);
  font-size: 11px;
  color: var(--text-secondary);
  border: 1px solid var(--border-muted);
  border-radius: var(--radius-pill);
  padding: 4px 10px;
}

/* ===== 会员权益 ===== */
.page-home .side-membership {
  border-left: 4px solid var(--accent-gold);
}
.page-home .member-tier-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 14px 0 12px;
}
.page-home .member-tier {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  background: rgba(10, 14, 23, 0.6);
  border: 1px solid var(--border-muted);
  border-radius: 12px;
  padding: 12px 14px;
  transition: border-color var(--ease), transform var(--ease), background var(--ease);
}
.page-home .member-tier:hover {
  border-color: rgba(255, 215, 0, 0.5);
  background: rgba(26, 32, 43, 0.9);
  transform: translateX(-4px);
}
.page-home .member-tier-name {
  font-family: var(--font-heading);
  font-size: 15px;
  letter-spacing: 0.06em;
  color: var(--text-primary);
}
.page-home .member-tier-desc {
  font-size: 12px;
  color: var(--text-secondary);
  text-align: right;
  line-height: 1.5;
}
.page-home .member-note {
  border-top: 1px dashed var(--border-muted);
  padding-top: 12px;
  margin-bottom: 12px;
}
.page-home .member-note p {
  margin: 0;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  line-height: 1.6;
  color: var(--text-secondary);
}
.page-home .gold-dot {
  width: 10px;
  height: 10px;
  background: var(--accent-gold);
  border-radius: 50%;
  box-shadow: 0 0 12px rgba(255, 215, 0, 0.45);
  flex-shrink: 0;
}
.page-home .member-deco {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 14px;
  border: 1px solid rgba(255, 215, 0, 0.25);
  margin-bottom: 14px;
}

/* ===== 数据截止提醒 ===== */
.page-home .side-deadline {
  background:
    linear-gradient(145deg, rgba(26, 32, 43, 0.95), rgba(10, 14, 23, 0.9));
}
.page-home .side-deadline::after {
  content: "22:00";
  position: absolute;
  right: -8px;
  bottom: -12px;
  font-family: var(--font-number);
  font-size: 72px;
  font-weight: 700;
  color: rgba(57, 255, 20, 0.06);
  line-height: 1;
  pointer-events: none;
  letter-spacing: -0.04em;
}

/* ===== 信任条 ===== */
.page-home .home-trust {
  background: #0d121d;
  border-top: 1px solid var(--border-muted);
  border-bottom: 1px solid var(--border-muted);
  padding: 36px 0;
}
.page-home .trust-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px 14px;
}
.page-home .trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 6px;
  padding: 18px 10px;
  background: rgba(10, 14, 23, 0.55);
  border: 1px solid var(--border-muted);
  border-radius: var(--radius-card);
  transition: transform var(--ease), border-color var(--ease);
}
.page-home .trust-item:hover {
  transform: translateY(-4px) rotate(-0.8deg);
  border-color: rgba(57, 255, 20, 0.35);
}
.page-home .trust-stat {
  font-family: var(--font-number);
  font-size: 34px;
  font-weight: 700;
  color: var(--accent-green);
  line-height: 1;
  text-shadow: 0 0 24px rgba(57, 255, 20, 0.18);
}
.page-home .trust-item:nth-child(3) .trust-stat,
.page-home .trust-item:nth-child(4) .trust-stat {
  color: var(--accent-orange);
  text-shadow: 0 0 24px rgba(255, 69, 0, 0.2);
}
.page-home .trust-item:nth-child(5) .trust-stat {
  color: var(--accent-gold);
  text-shadow: 0 0 24px rgba(255, 215, 0, 0.2);
}
.page-home .trust-label {
  font-size: 12px;
  line-height: 1.6;
  color: var(--text-secondary);
  max-width: 18ch;
}

/* ===== 响应式：平板与桌面 ===== */
@media (min-width: 768px) {
  .page-home .home-hero {
    min-height: 720px;
    padding: 120px 28px 64px;
  }
  .page-home .hero-inner {
    grid-template-columns: minmax(0, 1.25fr) minmax(300px, 0.75fr);
    gap: 48px;
    align-items: center;
  }
  .page-home .hero-preview {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }
  .page-home .home-split {
    grid-template-columns: minmax(0, 1fr);
    gap: 44px;
  }
  .page-home .report-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .page-home .analysis-features {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .page-home .lineup-board {
    grid-template-columns: minmax(0, 1.1fr) minmax(260px, 0.9fr);
  }
  .page-home .home-trust {
    padding: 44px 0;
  }
  .page-home .trust-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .page-home .home-hero {
    padding-top: 136px;
  }
  .page-home .home-hero::before {
    content: "";
    position: absolute;
    right: 8%;
    bottom: 0;
    width: 260px;
    height: 260px;
    background: repeating-linear-gradient(
      120deg,
      transparent 0 14px,
      rgba(57, 255, 20, 0.07) 14px 16px
    );
    transform: skewX(-12deg);
    z-index: -1;
  }
  .page-home .home-split {
    grid-template-columns: minmax(0, 1fr) 360px;
    align-items: start;
  }
  .page-home .home-side {
    position: sticky;
    top: calc(var(--header-h) + 24px);
    max-height: calc(100vh - var(--header-h) - 48px);
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: var(--border-muted) transparent;
  }
  .page-home .home-section {
    padding: 32px 28px 34px;
  }
  .page-home .trust-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
}

@media (prefers-reduced-motion: reduce) {
  .page-home .lineup-svg .route-green,
  .page-home .lineup-svg .route-orange {
    animation: none;
  }
  .page-home .preview-item,
  .page-home .report-card,
  .page-home .analysis-feature,
  .page-home .trust-item {
    transition: none;
  }
  .page-home .analysis-visual:hover img {
    transform: none;
  }
  .page-home .database-heat:hover img {
    transform: none;
  }
}
