.page-home {
  --home-ink: #0A1226;
  --home-darkblue: #1B2A4A;
  --home-light: #F5EFE6;
  --home-gold: #E0AA4E;
  --home-gold-light: #F2C96E;
  --home-red: #D64040;
  --home-red-dark: #A02222;
  --home-blue: #3D5A80;
  --home-white: #FFFFFF;
  --home-ink-soft: #222222;
  background:
    radial-gradient(circle at 88% 12%, rgba(224, 170, 78, 0.16), transparent 12rem),
    radial-gradient(circle at 12% 44%, rgba(214, 64, 64, 0.12), transparent 14rem),
    var(--home-light);
  color: var(--home-ink-soft);
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
  position: relative;
  font-family: var(--font-body, "Noto Sans SC", "Source Han Sans", "Microsoft YaHei", sans-serif);
}

.page-home .breadcrumb {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  font-size: var(--size-tiny, 0.75rem);
  gap: 0.5rem;
  letter-spacing: 0.08em;
  padding: 1rem max(1rem, calc((100vw - var(--max-width, 1280px)) / 2)) 0;
}

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

.page-home .breadcrumb a:hover,
.page-home .breadcrumb a:focus-visible {
  color: var(--home-red-dark);
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

.page-home .container {
  margin-inline: auto;
  max-width: var(--max-width, 1280px);
  padding-inline: 1.25rem;
  width: 100%;
}

/* 章节预览首屏：堆叠面板式布局 + 左侧垂直坐标轴 */
.page-home .chapter-preview {
  align-items: flex-start;
  display: grid;
  gap: 2rem 1.5rem;
  grid-template-columns: minmax(0, 1fr);
  padding-block: 2.5rem 3.5rem;
  position: relative;
}

.page-home .chapter-preview__rail {
  display: none;
  height: 100%;
  left: 0;
  position: absolute;
  top: 2.5rem;
  width: 2.25rem;
}

.page-home .chapter-preview__axis {
  color: var(--home-gold);
  display: block;
  font-family: var(--font-heading, "Orbitron", "Noto Sans SC", sans-serif);
  font-size: 0.7rem;
  font-weight: 300;
  height: auto;
  letter-spacing: 0.1em;
  line-height: 1.6;
  writing-mode: horizontal-tb;
}

.page-home .chapter-preview__axis::after {
  border-left: 1px dashed var(--home-gold);
  content: "";
  display: block;
  height: 3.4rem;
  margin: 0.25rem 0 0.25rem 0.35rem;
  opacity: 0.5;
}

.page-home .chapter-preview__head {
  max-width: 52rem;
  position: relative;
  z-index: 1;
}

.page-home .page-title {
  color: var(--home-ink);
  font-family: var(--font-heading, "Orbitron", "Noto Sans SC", sans-serif);
  font-size: var(--size-1, clamp(2rem, 8vw, 5rem));
  font-weight: 200;
  letter-spacing: -0.02em;
  line-height: 1.05;
  margin: 0.5rem 0 1rem;
  max-width: 15ch;
}

.page-home .page-subtitle {
  color: var(--home-ink);
  font-size: 0.95rem;
  line-height: 1.8;
  margin: 0 0 0.6rem;
  max-width: 48rem;
}

.page-home .chapter-preview__note {
  color: var(--home-blue);
  font-size: var(--size-tiny, 0.75rem);
  letter-spacing: 0.06em;
  margin: 0 0 1.4rem;
}

.page-home .stack-panels {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
  position: relative;
  z-index: 2;
}

.page-home .stack-panel {
  background: var(--home-white);
  border: 1px solid rgba(27, 42, 74, 0.16);
  border-radius: var(--radius, 12px);
  box-shadow: 0 10px 24px rgba(10, 18, 38, 0.1);
  color: var(--home-ink);
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  min-height: 8.5rem;
  padding: 1.4rem 1.2rem;
  position: relative;
  text-decoration: none;
  transition: box-shadow 0.2s ease, transform 0.2s ease, opacity 0.2s ease;
}

.page-home .stack-panel::before {
  background: transparent;
  border: 2px dotted var(--home-gold);
  border-radius: var(--radius, 12px);
  content: "";
  inset: -5px;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  transition: opacity 0.2s ease;
}

.page-home .stack-panel:hover,
.page-home .stack-panel:focus-visible {
  box-shadow: 0 18px 34px rgba(10, 18, 38, 0.18);
  opacity: 0.96;
  transform: translateY(-3px);
}

.page-home .stack-panel:focus-visible::before {
  opacity: 1;
}

.page-home .stack-panel__label {
  color: var(--home-red);
  font-family: var(--font-heading, "Orbitron", "Noto Sans SC", sans-serif);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.page-home .stack-panel__title {
  font-size: 1.3rem;
  font-weight: 600;
  line-height: 1.3;
}

.page-home .stack-panel__desc {
  color: var(--home-blue);
  font-size: 0.85rem;
  line-height: 1.6;
}

.page-home .stack-panel--one {
  transform: translateX(0);
}

.page-home .stack-panel--two {
  transform: translateX(0.75rem);
}

.page-home .stack-panel--three {
  transform: translateX(1.5rem);
}

.page-home .stack-panel--four {
  transform: translateX(2.25rem);
}

/* 首屏星座主视觉 */
.page-home .constellation-hero {
  alignItems: center;
  background: var(--home-ink);
  border: 1px solid rgba(224, 170, 78, 0.35);
  border-radius: calc(var(--radius, 12px) + 8px);
  display: flex;
  justify-content: center;
  margin-block: 0.5rem;
  overflow: hidden;
  position: relative;
  width: 100%;
}

.page-home .constellation-hero::after {
  border: 1px solid rgba(242, 201, 110, 0.4);
  border-radius: calc(var(--radius, 12px) + 4px);
  content: "";
  inset: 8px;
  pointer-events: none;
  position: absolute;
}

.page-home .constellation-hero__svg {
  aspect-ratio: 800 / 500;
  display: block;
  height: auto;
  max-width: 100%;
  width: 100%;
}

.page-home .c-point__label {
  fill: var(--home-gold-light);
  font-family: var(--font-heading, "Orbitron", "Noto Sans SC", sans-serif);
  font-size: 15px;
  font-weight: 300;
  letter-spacing: 0.06em;
}

/* 赛事日历星座图 */
.page-home .match-board {
  background: linear-gradient(135deg, #0A1226 0%, #101D3D 58%, #1B2A4A 100%);
  margin-top: 2.5rem;
  padding-block: 4rem 4.5rem;
  position: relative;
}

.page-home .match-board::before {
  content: "";
  background: radial-gradient(circle at 80% 12%, rgba(224, 170, 78, 0.14), transparent 16rem);
  inset: 0;
  position: absolute;
  pointer-events: none;
}

.page-home .match-board__inner {
  position: relative;
  z-index: 1;
}

.page-home .match-board .section__head {
  margin-bottom: 2.2rem;
}

.page-home .match-board .section-index {
  color: var(--home-gold);
}

.page-home .section-index {
  color: var(--home-red);
  font-family: var(--font-heading, "Orbitron", "Noto Sans SC", sans-serif);
  font-size: var(--size-tiny, 0.75rem);
  font-weight: 500;
  letter-spacing: 0.14em;
  margin: 0 0 0.5rem;
  text-transform: uppercase;
}

.page-home .section-title {
  color: var(--home-ink);
  font-family: var(--font-heading, "Orbitron", "Noto Sans SC", sans-serif);
  font-size: var(--size-title, clamp(1.6rem, 4.5vw, 2.4rem));
  font-weight: 300;
  letter-spacing: -0.01em;
  line-height: 1.2;
  margin: 0 0 0.8rem;
}

.page-home .match-board .section-title {
  color: var(--home-white);
}

.page-home .match-board .section__lead {
  color: rgba(245, 239, 230, 0.86);
  font-size: 0.92rem;
  line-height: 1.8;
  margin: 0;
  max-width: 52rem;
}

.page-home .constellation-map {
  display: grid;
  gap: 1.6rem;
  grid-template-columns: 1fr;
}

.page-home .constellation-map__canvas {
  background: rgba(10, 18, 38, 0.72);
  border: 1px solid rgba(224, 170, 78, 0.32);
  border-radius: calc(var(--radius, 12px) + 8px);
  padding: 1.2rem;
  position: relative;
}

.page-home .constellation-map__canvas::before {
  background-image:
    linear-gradient(rgba(224, 170, 78, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(224, 170, 78, 0.08) 1px, transparent 1px);
  background-size: 2rem 2rem;
  content: "";
  inset: 0;
  position: absolute;
  pointer-events: none;
}

.page-home .constellation-grid {
  display: grid;
  gap: 0.8rem;
  grid-template-columns: 1fr;
  list-style: none;
  margin: 0;
  padding: 0;
  position: relative;
  z-index: 1;
}

.page-home .constellation-item {
  background: rgba(245, 239, 230, 0.95);
  border-left: 4px solid var(--home-red);
  border-radius: 8px;
  display: grid;
  gap: 0.2rem;
  grid-template-columns: auto 1fr;
  padding: 0.9rem 1rem;
  position: relative;
  transition: box-shadow 0.18s ease, background 0.18s ease;
}

.page-home .constellation-item:nth-child(even) {
  border-left-color: var(--home-gold);
}

.page-home .constellation-item:hover,
.page-home .constellation-item:focus-within {
  background: var(--home-white);
  box-shadow: 0 8px 20px rgba(224, 170, 78, 0.18);
}

.page-home .constellation-item__no {
  color: var(--home-red);
  font-family: var(--font-heading, "Orbitron", "Noto Sans SC", sans-serif);
  font-size: 0.8rem;
  font-weight: 500;
  grid-row: span 2;
  margin-right: 0.6rem;
}

.page-home .constellation-item__league {
  color: var(--home-blue);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.page-home .constellation-item__teams {
  color: var(--home-ink);
  font-size: 0.95rem;
  font-weight: 600;
}

.page-home .constellation-item__stat {
  color: var(--home-blue);
  font-size: 0.78rem;
  grid-column: 2;
}

.page-home .constellation-item__tip {
  color: var(--home-red-dark);
  font-size: 0.76rem;
  grid-column: 2;
  line-height: 1.5;
}

.page-home .constellation-map__legend {
  margin-top: 1rem;
  padding-inline: 0.3rem;
}

.page-home .legend-list {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  margin: 0;
  padding: 0;
}

.page-home .legend-row {
  align-items: center;
  color: rgba(245, 239, 230, 0.9);
  display: flex;
  font-size: 0.8rem;
  gap: 0.75rem;
  justify-content: space-between;
}

.page-home .legend-row dt {
  align-items: center;
  display: flex;
  gap: 0.4rem;
  white-space: nowrap;
}

.page-home .legend-row dd {
  margin: 0;
  opacity: 0.72;
  text-align: right;
}

.page-home .legend-dot {
  border-radius: 50%;
  display: inline-block;
  height: 0.65rem;
  width: 0.65rem;
}

.page-home .legend-dot--red {
  background: var(--home-red);
  box-shadow: 0 0 0 2px rgba(214, 64, 64, 0.3);
}

.page-home .legend-dot--gold {
  background: var(--home-gold);
  box-shadow: 0 0 0 2px rgba(224, 170, 78, 0.3);
}

.page-home .legend-dot--grid {
  background: rgba(245, 239, 230, 0.4);
  border: 1px dashed rgba(242, 201, 110, 0.7);
}

.page-home .panel {
  border-radius: calc(var(--radius, 12px) + 8px);
}

.page-home .panel--dark {
  background: linear-gradient(145deg, #0A1226, #1B2A4A);
  border: 1px solid rgba(224, 170, 78, 0.4);
  box-shadow: 0 20px 40px rgba(10, 18, 38, 0.35);
  color: var(--home-white);
  padding: 1.6rem 1.4rem;
}

.page-home .panel--light {
  background: var(--home-white);
  border: 1px solid rgba(27, 42, 74, 0.14);
  box-shadow: 0 14px 30px rgba(10, 18, 38, 0.08);
  color: var(--home-ink);
  padding: 1.6rem 1.4rem;
}

.page-home .panel__label {
  color: var(--home-gold);
  font-family: var(--font-heading, "Orbitron", "Noto Sans SC", sans-serif);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  margin: 0 0 0.7rem;
  text-transform: uppercase;
}

.page-home .panel__title {
  color: var(--home-white);
  font-size: 1.3rem;
  font-weight: 600;
  line-height: 1.4;
  margin: 0 0 0.8rem;
}

.page-home .panel__text {
  color: rgba(245, 239, 230, 0.88);
  font-size: 0.9rem;
  line-height: 1.8;
  margin: 0 0 1.2rem;
}

/* 按钮 */
.page-home .btn {
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  display: inline-flex;
  font-family: var(--font-heading, "Orbitron", "Noto Sans SC", sans-serif);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  line-height: 1.2;
  padding: 0.8rem 1.4rem;
  text-decoration: none;
  transition: background 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

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

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

.page-home .btn--gold:hover,
.page-home .btn--gold:focus-visible {
  background: var(--home-gold-light);
  box-shadow: 0 6px 16px rgba(224, 170, 78, 0.4);
}

.page-home .btn--red {
  background: linear-gradient(135deg, var(--home-red), var(--home-red-dark));
  color: var(--home-white);
}

.page-home .btn--red:hover,
.page-home .btn--red:focus-visible {
  box-shadow: 0 8px 20px rgba(214, 64, 64, 0.34);
}

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

.page-home .btn--ghost:hover,
.page-home .btn--ghost:focus-visible {
  background: rgba(27, 42, 74, 0.06);
  border-color: var(--home-ink);
}

/* 会员中心同步提示 */
.page-home .member-sync {
  padding-block: 4rem 3rem;
}

.page-home .member-sync__inner {
  align-items: center;
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
}

.page-home .member-sync__content .section-title {
  margin-top: 0.2rem;
}

.page-home .member-sync__content .section__lead {
  color: var(--home-ink);
  font-size: 0.92rem;
  line-height: 1.85;
  margin: 0 0 1.4rem;
  max-width: 50rem;
}

.page-home .data-table {
  display: grid;
  gap: 0.3rem;
  margin: 0 0 1.4rem;
}

.page-home .data-row {
  align-items: baseline;
  border-bottom: 1px solid rgba(27, 42, 74, 0.12);
  display: grid;
  gap: 0.5rem;
  grid-template-columns: 1fr;
  padding-block: 0.55rem;
}

.page-home .data-row:last-child {
  border-bottom: 0;
}

.page-home .data-row__key {
  color: var(--home-blue);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.05em;
}

.page-home .data-row__value {
  color: var(--home-ink);
  font-size: 0.95rem;
  font-weight: 400;
  margin: 0;
  text-align: left;
}

.page-home .trust-statement {
  background: rgba(224, 170, 78, 0.14);
  border-left: 3px solid var(--home-gold);
  color: var(--home-ink);
  font-size: 0.85rem;
  line-height: 1.8;
  margin: 0 0 1.4rem;
  padding: 0.8rem 0.9rem;
}

.page-home .member-sync__media {
  border-radius: calc(var(--radius, 12px) + 8px);
  box-shadow: 0 18px 36px rgba(10, 18, 38, 0.16);
  display: block;
  height: auto;
  margin: 0;
  max-width: 100%;
  overflow: hidden;
}

.page-home .member-sync__media img,
.page-home .download-zone__media img,
.page-home .analytics-bottom__chart img {
  display: block;
  height: auto;
  max-width: 100%;
  object-fit: cover;
  width: 100%;
}

/* 下载入口 */
.page-home .download-zone {
  background: linear-gradient(135deg, #0A1226, #1B2A4A);
  margin-block: 2rem;
  padding-block: 3.5rem;
  position: relative;
}

.page-home .download-zone::before {
  border-block: 1px solid rgba(224, 170, 78, 0.24);
  content: "";
  inset: 1rem 0;
  pointer-events: none;
  position: absolute;
}

.page-home .download-zone__inner {
  align-items: center;
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
  position: relative;
  z-index: 1;
}

.page-home .download-zone__panel .section-index {
  color: var(--home-gold);
}

.page-home .download-zone__panel .section-title {
  color: var(--home-white);
}

.page-home .download-zone__panel .section__lead {
  color: rgba(245, 239, 230, 0.85);
  font-size: 0.9rem;
  line-height: 1.8;
  margin: 0 0 1.4rem;
}

.page-home .download-steps {
  list-style: none;
  margin: 0 0 1.4rem;
  padding: 0;
}

.page-home .download-step {
  align-items: flex-start;
  color: rgba(245, 239, 230, 0.9);
  display: flex;
  gap: 0.8rem;
  line-height: 1.7;
  margin: 0 0 0.8rem;
}

.page-home .download-step__no {
  background: var(--home-red);
  border-radius: 50%;
  color: var(--home-white);
  flex: 0 0 1.8rem;
  font-size: 0.78rem;
  font-weight: 600;
  height: 1.8rem;
  line-height: 1.8rem;
  text-align: center;
}

.page-home .download-step__text {
  padding-top: 0.1rem;
}

.page-home .download-zone__version {
  color: rgba(245, 239, 230, 0.66);
  font-size: 0.78rem;
  margin-top: 0.6rem;
}

.page-home .download-zone__media {
  background: rgba(245, 239, 230, 0.1);
  border-radius: calc(var(--radius, 12px) + 8px);
  margin: 0;
  overflow: hidden;
}

/* 平台数据与可信度 */
.page-home .analytics-shelf {
  padding-block: 3.5rem 4.5rem;
}

.page-home .analytics-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
  margin: 1.8rem 0;
}

.page-home .stat-card {
  background: var(--home-white);
  border: 1px solid rgba(27, 42, 74, 0.14);
  border-radius: calc(var(--radius, 12px) + 4px);
  box-shadow: 0 10px 24px rgba(10, 18, 38, 0.07);
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  padding: 1.4rem 1.2rem;
  position: relative;
}

.page-home .stat-card::after {
  background: var(--home-gold);
  content: "";
  height: 3px;
  left: 1.2rem;
  position: absolute;
  top: 0;
  width: 2.4rem;
}

.page-home .stat-card--accent {
  background: linear-gradient(145deg, #0A1226, #1B2A4A);
  border-color: rgba(224, 170, 78, 0.36);
  color: var(--home-white);
}

.page-home .stat-card--accent::after {
  background: var(--home-red);
}

.page-home .stat-card__num {
  color: var(--home-ink);
  font-family: var(--font-heading, "Orbitron", "Noto Sans SC", sans-serif);
  font-size: 2rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.page-home .stat-card--accent .stat-card__num {
  color: var(--home-gold);
}

.page-home .stat-card__label {
  color: var(--home-ink);
  font-size: 0.9rem;
  font-weight: 600;
}

.page-home .stat-card--accent .stat-card__label {
  color: var(--home-white);
}

.page-home .stat-card__desc {
  color: var(--home-blue);
  font-size: 0.8rem;
  line-height: 1.6;
}

.page-home .stat-card--accent .stat-card__desc {
  color: rgba(245, 239, 230, 0.75);
}

.page-home .analytics-bottom {
  align-items: stretch;
  display: grid;
  gap: 1.6rem;
  grid-template-columns: 1fr;
  margin: 1.8rem 0;
}

.page-home .analytics-bottom__chart {
  background: var(--home-ink);
  border-radius: calc(var(--radius, 12px) + 8px);
  margin: 0;
  overflow: hidden;
}

.page-home .analytics-bottom__note {
  padding: 1.6rem 1.4rem;
}

.page-home .analytics-bottom__note h3 {
  font-size: 1.2rem;
  font-weight: 600;
  margin: 0 0 0.7rem;
}

.page-home .analytics-bottom__note p:not(.panel__label) {
  color: var(--home-ink);
  font-size: 0.9rem;
  line-height: 1.8;
  margin: 0 0 1.2rem;
}

.page-home .orbit-track {
  background: linear-gradient(90deg, var(--home-red), var(--home-gold), var(--home-blue));
  height: 2px;
  margin: 2.6rem 0 2.8rem;
  opacity: 0.7;
  position: relative;
}

.page-home .orbit-track::before {
  background: var(--home-gold);
  border-radius: 50%;
  content: "";
  height: 0.5rem;
  left: 12%;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 0.5rem;
}

.page-home .orbit-track::after {
  background: var(--home-red);
  border-radius: 50%;
  content: "";
  height: 0.65rem;
  position: absolute;
  right: 18%;
  top: 50%;
  transform: translateY(-50%);
  width: 0.65rem;
}

.page-home .brand-archive__title {
  color: var(--home-blue);
  font-family: var(--font-heading, "Orbitron", "Noto Sans SC", sans-serif);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  margin: 0 0 1rem;
  text-transform: uppercase;
}

.page-home .archive-link-list {
  display: grid;
  gap: 0.55rem;
  grid-template-columns: 1fr;
  list-style: none;
  margin: 0;
  padding: 0;
}

.page-home .archive-link {
  color: var(--home-ink);
  display: inline-flex;
  font-size: 0.9rem;
  gap: 0.5rem;
  text-decoration: none;
}

.page-home .archive-link span {
  color: var(--home-red);
  font-family: var(--font-heading, "Orbitron", "Noto Sans SC", sans-serif);
  font-size: 0.76rem;
  font-weight: 500;
  letter-spacing: 0.06em;
}

.page-home .archive-link:hover,
.page-home .archive-link:focus-visible {
  color: var(--home-red-dark);
  text-decoration: underline;
  text-underline-offset: 0.2em;
}

/* 桌面端：非对称堆叠 + 网格秩序 */
@media (min-width: 900px) {
  .page-home .breadcrumb {
    padding-top: 1.4rem;
  }

  .page-home .chapter-preview {
    column-gap: 2rem;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    padding-block: 4rem 5rem;
  }

  .page-home .chapter-preview__rail {
    display: block;
  }

  .page-home .chapter-preview__head {
    grid-column: 2 / -1;
    padding-left: 2.4rem;
  }

  .page-home .stack-panels {
    grid-column: 1 / 2;
    grid-row: 1 / span 2;
    margin-top: 7rem;
  }

  .page-home .constellation-hero {
    grid-column: 2 / -1;
    margin-top: 2.2rem;
  }

  .page-home .page-title {
    max-width: 18ch;
  }

  .page-home .stack-panel--one {
    transform: translateX(-1.2rem);
  }

  .page-home .stack-panel--two {
    transform: translateX(0.6rem);
  }

  .page-home .stack-panel--three {
    transform: translateX(1.8rem);
  }

  .page-home .stack-panel--four {
    transform: translateX(3rem);
  }

  .page-home .constellation-map {
    grid-template-columns: minmax(0, 1.6fr) minmax(0, 1fr);
  }

  .page-home .constellation-grid {
    grid-template-columns: 1fr 1fr;
  }

  .page-home .legend-row {
    justify-content: flex-start;
  }

  .page-home .legend-row dd {
    margin-left: auto;
    text-align: left;
  }

  .page-home .member-sync__inner {
    grid-template-columns: minmax(0, 1.35fr) minmax(0, 0.65fr);
  }

  .page-home .member-sync__media img {
    object-fit: cover;
  }

  .page-home .data-row {
    grid-template-columns: 10rem minmax(0, 1fr);
  }

  .page-home .data-row__value {
    text-align: right;
  }

  .page-home .download-zone__inner {
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  }

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

  .page-home .analytics-bottom {
    grid-template-columns: minmax(0, 1.25fr) minmax(0, 1fr);
  }

  .page-home .archive-link-list {
    grid-template-columns: 1fr 1fr;
  }
}

@media (prefers-reduced-motion: no-preference) {
  .page-home .constellation-hero::after {
    animation: starPulse 3.6s ease-in-out infinite;
  }

  .page-home .c-point circle:first-of-type {
    animation: starPulse 2.4s ease-in-out infinite;
    transform-origin: center;
    transform-box: fill-box;
  }
}

@keyframes starPulse {
  0%, 100% {
    opacity: 0.55;
  }
  50% {
    opacity: 1;
  }
}

.page-home .constellation-item:focus-within .constellation-item__tip {
  color: var(--home-red);
}

.page-home img {
  max-width: 100%;
}
