.page-home {
  --hero-min-height: 720px;
  --hero-bg: #12061F;
  --index-row-w: 460px;
  --timeline-line-color: rgba(212, 175, 55, 0.18);
  --font-title: 'Rajdhani', 'DIN Alternate', 'PingFang SC', sans-serif;
  --font-mono: 'JetBrains Mono', 'Roboto Mono', monospace;
  --font-body: 'Noto Sans SC', 'Source Han Sans SC', sans-serif;
  background-color: #2A0A4A;
  color: #F2EAE4;
  position: relative;
  overflow-x: hidden;
  font-family: var(--font-body);
}

/* ===== 首屏 / HERO ===== */
.page-home .home-hero {
  position: relative;
  min-height: var(--hero-min-height);
  display: flex;
  align-items: stretch;
  background: var(--hero-bg);
  padding: 0;
  border-bottom: 1px solid rgba(212, 175, 55, 0.3);
}

.page-home .home-hero__inner {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 20px 48px;
  position: relative;
  z-index: 2;
}

.page-home .hero-copy {
  padding-top: 40px;
  max-width: 680px;
  position: relative;
  z-index: 2;
}

.page-home .hero-kicker {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.12em;
  color: #E8C874;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.page-home .hero-kicker__label {
  border: 1px solid rgba(212, 175, 55, 0.5);
  padding: 3px 10px;
  border-radius: 2px;
  white-space: nowrap;
}

.page-home .hero-kicker__ver {
  color: #8A8FA3;
  font-size: 11px;
}

.page-home .hero-title {
  font-family: var(--font-title);
  font-size: clamp(28px, 4vw, 48px);
  line-height: 1.1;
  font-weight: 700;
  color: #F2EAE4;
  margin: 0 0 16px;
  letter-spacing: 0.01em;
}

.page-home .hero-lead {
  font-size: clamp(15px, 1.6vw, 18px);
  line-height: 1.6;
  color: rgba(242, 234, 228, 0.72);
  margin: 0 0 24px;
  max-width: 540px;
}

.page-home .hero-stats {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.page-home .hero-stats__item {
  display: flex;
  flex-direction: column;
  background: rgba(91, 42, 134, 0.4);
  border: 1px solid rgba(212, 175, 55, 0.25);
  padding: 10px 14px;
  min-width: 72px;
  border-radius: 4px;
  backdrop-filter: blur(3px);
}

.page-home .hero-stats__num {
  font-family: var(--font-mono);
  font-size: 28px;
  line-height: 1;
  font-weight: 700;
  color: #E8C874;
}

.page-home .hero-stats__unit {
  font-size: 14px;
  font-family: var(--font-mono);
  margin-left: 2px;
}

.page-home .hero-stats__label {
  font-size: 12px;
  color: #8A8FA3;
  margin-top: 4px;
}

.page-home .hero-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.page-home .hero-actions__primary,
.page-home .hero-actions__secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 44px;
  padding: 0 22px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.page-home .hero-actions__primary {
  background: #D4AF37;
  color: #12061F;
  border: 1px solid #D4AF37;
}

.page-home .hero-actions__primary:hover {
  background: #E8C874;
  border-color: #E8C874;
}

.page-home .hero-actions__secondary {
  background: transparent;
  color: #00C2FF;
  border: 1px solid rgba(0, 194, 255, 0.4);
}

.page-home .hero-actions__secondary:hover {
  background: rgba(0, 194, 255, 0.1);
}

.page-home .hero-hint {
  margin-top: 18px;
  font-size: 13px;
  color: #8A8FA3;
  font-family: var(--font-mono);
  line-height: 1.5;
  border-left: 2px solid #5B2A86;
  padding-left: 12px;
}

.page-home .hero-visual {
  position: relative;
  margin-top: 28px;
  z-index: 1;
}

.page-home .hero-visual__frame {
  position: relative;
}

.page-home .hero-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(212, 175, 55, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(212, 175, 55, 0.05) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}

.page-home .hero-visual__img {
  display: block;
  width: 100%;
  height: auto;
  border: 1px solid rgba(212, 175, 55, 0.6);
  border-radius: 4px;
}

.page-home .hero-visual__scan {
  position: absolute;
  left: 0;
  right: 0;
  height: 90px;
  top: 0;
  background: linear-gradient(180deg, rgba(0, 194, 255, 0.18) , transparent);
  animation: pgScanMove 4s ease-in-out infinite alternate;
  pointer-events: none;
}

@keyframes pgScanMove {
  0% { top: 0; opacity: 0.3; }
  100% { top: calc(100% - 90px); opacity: 0.8; }
}

.page-home .hero-coord {
  position: absolute;
  inset: 0;
  list-style: none;
  margin: 0;
  padding: 0;
  pointer-events: none;
  z-index: 3;
}

.page-home .hero-coord__item {
  position: absolute;
  left: var(--x);
  top: var(--y);
  font-family: var(--font-mono);
  font-size: 11px;
  line-height: 1.4;
  color: #E8C874;
  background: rgba(18, 6, 31, 0.65);
  border-left: 1px solid #E8C874;
  padding: 2px 8px;
  letter-spacing: 0.04em;
}

.page-home .hero-coord__item em {
  display: block;
  color: #00C2FF;
  font-size: 10px;
  font-style: normal;
}

.page-home .hero-scroll {
  position: absolute;
  bottom: 18px;
  right: 28px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #8A8FA3;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
}

.page-home .hero-scroll__line {
  display: block;
  width: 44px;
  height: 1px;
  background: linear-gradient(90deg, #D4AF37, transparent);
}

.page-home .hero-scroll__label {
  white-space: nowrap;
}

/* ===== 内容结构 ===== */
.page-home .main-contents {
  position: relative;
  z-index: 1;
}

.page-home .container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}

/* ===== 01 + 02 索引面板 ===== */
.page-home .hero-index {
  display: flex;
  flex-direction: column;
  padding: 56px 0 20px;
  gap: 36px;
}

.page-home .hero-index__col {
  flex: 1;
}

.page-home .section-label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.10em;
  color: #E8C874;
  margin: 0 0 20px;
  text-transform: uppercase;
}

.page-home .section-label::after {
  content: '';
  height: 1px;
  flex: 1;
  max-width: 100px;
  background: rgba(212, 175, 55, 0.35);
}

.page-home .site-index {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

.page-home .site-index__link {
  display: grid;
  grid-template-columns: 68px 100px calc(100% - 168px);
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  background: rgba(18, 6, 31, 0.72);
  border: 1px solid rgba(91, 42, 134, 0.6);
  border-radius: 4px;
  text-decoration: none;
  transition: border-color 0.25s, background 0.25s, transform 0.25s;
}

.page-home .site-index__link:hover {
  border-color: rgba(0, 194, 255, 0.5);
  background: rgba(0, 194, 255, 0.06);
  transform: translateX(4px);
}

.page-home .site-index__code {
  font-family: var(--font-mono);
  font-size: 12px;
  color: #8A8FA3;
}

.page-home .site-index__name {
  font-size: 15px;
  font-weight: 600;
  color: #F2EAE4;
}

.page-home .site-index__desc {
  font-size: 12px;
  color: #8A8FA3;
  text-align: right;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.page-home .tag-matrix {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.page-home .tag-matrix__btn {
  display: inline-flex;
  align-items: center;
  height: 30px;
  padding: 0 12px;
  font-family: var(--font-mono);
  font-size: 12px;
  color: #F2EAE4;
  background: rgba(91, 42, 134, 0.5);
  border: 1px solid rgba(212, 175, 55, 0.4);
  border-radius: 3px;
  cursor: pointer;
  transition: all 0.25s ease;
}

.page-home .tag-matrix__btn:hover,
.page-home .tag-matrix__btn[data-open='true'] {
  border-color: #00C2FF;
  color: #00C2FF;
  background: rgba(0, 194, 255, 0.08);
}

.page-home .tag-list {
  list-style: none;
  margin: 0 0 14px;
  padding: 0;
  columns: 2;
  column-gap: 16px;
}

.page-home .tag-list__item {
  break-inside: avoid;
  padding: 6px 10px;
  font-size: 13px;
  font-family: var(--font-mono);
  color: rgba(242, 234, 228, 0.72);
  border-bottom: 1px solid rgba(91, 42, 134, 0.7);
  list-style: none;
}

.page-home .tag-list__item::before {
  content: '▸ ';
  color: #D4AF37;
}

.page-home .tag-matrix__img {
  display: block;
  width: 100%;
  max-width: 760px;
  height: auto;
  border: 1px solid rgba(212, 175, 55, 0.3);
  margin: 4px 0 10px;
}

.page-home .tag-matrix__note {
  font-size: 13px;
  line-height: 1.6;
  color: #8A8FA3;
  max-width: 640px;
  margin: 0;
}

/* ===== 筛选面板 ===== */
.page-home .filter-panel {
  margin: 0 0 34px;
  padding: 18px 20px;
  background: rgba(18, 6, 31, 0.8);
  border: 1px dashed rgba(212, 175, 55, 0.4);
}

.page-home .filter-panel__label {
  font-family: var(--font-mono);
  font-size: 11px;
  color: #00C2FF;
  letter-spacing: 0.12em;
}

.page-home .filter-panel__result {
  font-family: var(--font-mono);
  font-size: 12px;
  color: #8A8FA3;
}

.page-home .filter-panel__empty {
  font-size: 14px;
  color: #E8C874;
  margin: 6px 0 0;
}

.page-home [data-hidden] {
  display: none !important;
}

/* ===== 最近使用记录 ===== */
.page-home .recent-records {
  background: #12061F;
  padding: 52px 0 48px;
  border-top: 1px solid rgba(212, 175, 55, 0.2);
  position: relative;
}

.page-home .recent-records::before {
  content: 'REC-INDEX // 日志';
  position: absolute;
  top: 18px;
  left: 20px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  color: rgba(138, 143, 163, 0.7);
}

.page-home .recent-records__header {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 24px;
  padding-top: 8px;
}

.page-home .recent-records__desc {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(242, 234, 228, 0.72);
  max-width: 620px;
  margin: 0 0 12px;
}

.page-home .recent-records__sync {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-family: var(--font-mono);
  color: #8A8FA3;
  white-space: nowrap;
  padding-top: 2px;
}

.page-home .recent-records__sync-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #00C2FF;
  box-shadow: 0 0 8px rgba(0, 194, 255, 0.6);
  animation: pgPulse 2.2s infinite;
}

@keyframes pgPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.page-home .timeline {
  position: relative;
}

.page-home .timeline::before {
  content: '';
  position: absolute;
  left: 18px;
  top: 8px;
  bottom: 12px;
  width: 1px;
  background: linear-gradient(180deg, rgba(212, 175, 55, 0.4), rgba(0, 194, 255, 0.15), transparent);
}

.page-home .timeline-item {
  margin-bottom: 18px;
  position: relative;
  padding-left: 46px;
}

.page-home .timeline-item::before {
  content: '';
  position: absolute;
  left: 13px;
  top: 16px;
  width: 11px;
  height: 11px;
  border: 2px solid #D4AF37;
  border-radius: 50%;
  background: #12061F;
}

.page-home .timeline-item__trigger {
  display: flex;
  align-items: baseline;
  gap: 8px;
  background: transparent;
  border: 0;
  color: inherit;
  width: 100%;
  padding: 0;
  cursor: pointer;
  text-align: left;
}

.page-home .timeline-item__date {
  font-family: var(--font-mono);
  font-size: 15px;
  font-weight: 700;
  color: #E8C874;
}

.page-home .timeline-item__week {
  font-family: var(--font-mono);
  font-size: 12px;
  color: #8A8FA3;
}

.page-home .timeline-item__count {
  font-size: 12px;
  color: #8A8FA3;
  margin-left: auto;
}

.page-home .timeline-item__arrow {
  font-family: var(--font-mono);
  font-size: 20px;
  color: #D4AF37;
  display: inline-block;
}

.page-home .timeline-item__body {
  margin-top: 12px;
}

.page-home .timeline-log {
  list-style: none;
  margin: 0;
  padding: 0;
  border-left: 2px solid rgba(0, 194, 255, 0.2);
  margin-left: 6px;
  padding-left: 0;
}

.page-home .timeline-log__row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  border-bottom: 1px solid rgba(91, 42, 134, 0.4);
  background: rgba(42, 10, 74, 0.25);
  border-radius: 3px;
  margin-bottom: 8px;
}

.page-home .timeline-log__time {
  font-family: var(--font-mono);
  font-size: 12px;
  color: #8A8FA3;
  white-space: nowrap;
}

.page-home .timeline-log__link {
  color: #F2EAE4;
  text-decoration: none;
  font-size: 14px;
  flex: 1;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  transition: color 0.2s;
}

.page-home .timeline-log__link:hover {
  color: #00C2FF;
  text-decoration: underline;
}

.page-home .timeline-log__tag {
  flex-shrink: 0;
  display: inline-flex;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.06em;
  padding: 2px 8px;
  border: 1px solid rgba(212, 175, 55, 0.4);
  border-radius: 2px;
  color: #E8C874;
}

.page-home .timeline-log__fav {
  flex-shrink: 0;
  background: transparent;
  border: 1px solid rgba(0, 194, 255, 0.4);
  color: #00C2FF;
  font-size: 12px;
  font-family: var(--font-mono);
  padding: 3px 8px;
  border-radius: 3px;
  cursor: pointer;
  transition: all 0.2s;
}

.page-home .timeline-log__fav:hover {
  background: rgba(0, 194, 255, 0.12);
  border-color: #00C2FF;
}

.page-home .timeline-log__fav[data-open='true'] {
  background: rgba(232, 200, 116, 0.15);
  border-color: #E8C874;
  color: #E8C874;
}

.page-home .recent-records__foot {
  font-size: 12px;
  font-family: var(--font-mono);
  color: #8A8FA3;
  margin: 12px 0 0;
  padding-left: 12px;
  border-left: 2px solid #5B2A86;
}

/* ===== 移动端新手指南 ===== */
.page-home .guide-section {
  padding: 56px 0 48px;
  background: #2A0A4A;
  position: relative;
}

.page-home .guide-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 20%, rgba(91, 42, 134, 0.4), transparent 60%);
  pointer-events: none;
}

.page-home .guide-section__grid {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  position: relative;
  z-index: 1;
}

.page-home .guide-section__media {
  width: 200px;
  flex-shrink: 0;
}

.page-home .guide-section__img {
  display: block;
  width: 100%;
  height: auto;
  border: 1px solid rgba(232, 200, 116, 0.5);
  border-radius: 6px;
  box-shadow: 0 10px 40px rgba(18, 6, 31, 0.7);
}

.page-home .guide-section__content {
  flex: 1;
  width: 100%;
}

.page-home .guide-section__lead {
  font-size: 15px;
  line-height: 1.6;
  color: rgba(242, 234, 228, 0.68);
  margin: 0 0 20px;
  max-width: 560px;
}

.page-home .guide-steps {
  list-style: none;
  margin: 0 0 20px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.page-home .guide-steps__item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 8px 14px;
  background: rgba(18, 6, 31, 0.4);
  border: 1px solid rgba(91, 42, 134, 0.5);
  border-left: 3px solid #D4AF37;
}

.page-home .guide-steps__num {
  font-family: var(--font-mono);
  font-size: 18px;
  color: #E8C874;
}

.page-home .guide-steps__title {
  font-size: 14px;
  font-weight: 600;
  margin: 0 0 4px;
}

.page-home .guide-steps__text {
  font-size: 13px;
  line-height: 1.5;
  color: #8A8FA3;
  margin: 0;
}

.page-home .guide-section__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  padding: 0 20px;
  background: #D4AF37;
  color: #12061F;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 4px;
  transition: all 0.25s;
}

.page-home .guide-section__cta:hover {
  background: #E8C874;
}

/* ===== 内容中心版本归档 ===== */
.page-home .archive-section {
  padding: 52px 0 48px;
  background: #12061F;
  border-top: 1px solid rgba(212, 175, 55, 0.2);
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.page-home .archive-section__header {
  margin-bottom: 28px;
}

.page-home .archive-section__desc {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(242, 234, 228, 0.72);
  margin: 0 0 16px;
}

.page-home .archive-section__img-wrap {
  border: 1px solid rgba(212, 175, 55, 0.28);
  border-radius: 4px;
  overflow: hidden;
  max-width: 420px;
}

.page-home .archive-section__img {
  display: block;
  width: 100%;
  height: auto;
}

.page-home .version-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 20px;
}

.page-home .version-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 20px;
  background: rgba(42, 10, 74, 0.6);
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 4px;
  text-decoration: none;
  color: inherit;
  transition: all 0.25s;
  overflow: hidden;
}

.page-home .version-card:hover {
  border-color: #00C2FF;
  background: rgba(91, 42, 134, 0.35);
  transform: translateY(-2px);
}

.page-home .version-card::after {
  content: '▸';
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 20px;
  color: #D4AF37;
}

.page-home .version-card--current {
  border-color: #D4AF37;
  box-shadow: inset 0 0 0 1px rgba(212, 175, 55, 0.2);
  background: rgba(91, 42, 134, 0.3);
}

.page-home .version-card__badge {
  position: absolute;
  top: -1px;
  right: 14px;
  background: #D4AF37;
  color: #12061F;
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 4px 8px;
  border-radius: 0 0 3px 3px;
}

.page-home .version-card__ver {
  font-family: var(--font-mono);
  font-size: 24px;
  font-weight: 700;
  color: #E8C874;
  display: block;
}

.page-home .version-card__date {
  font-family: var(--font-mono);
  font-size: 12px;
  color: #8A8FA3;
  display: block;
}

.page-home .version-card__title {
  font-size: 16px;
  font-weight: 600;
  display: block;
  margin-top: 4px;
}

.page-home .version-card__desc {
  font-size: 13px;
  color: #8A8FA3;
  display: block;
}

.page-home .version-card__meta {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  color: #00C2FF;
  margin-top: 6px;
  display: block;
}

/* ===== 专题推荐 ===== */
.page-home .featured-section {
  padding: 52px 0 44px;
  background: #2A0A4A;
}

.page-home .featured-section__head {
  margin-bottom: 24px;
}

.page-home .featured-section__desc {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(242, 234, 228, 0.7);
  margin: 0 0 18px;
}

.page-home .featured-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.page-home .featured-card {
  background: rgba(18, 6, 31, 0.52);
  border: 1px solid rgba(212, 175, 55, 0.25);
  border-radius: 4px;
  padding: 20px;
  transition: border-color 0.25s, transform 0.25s;
  position: relative;
}

.page-home .featured-card:hover {
  border-color: rgba(0, 194, 255, 0.5);
  transform: translateY(-2px);
}

.page-home .featured-card--highlight {
  border-top: 3px solid #D4AF37;
  background: linear-gradient(135deg, rgba(91, 42, 134, 0.4), rgba(18, 6, 31, 0.6));
}

.page-home .featured-card__head {
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
}

.page-home .featured-card__tag {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  padding: 2px 8px;
  background: rgba(212, 175, 55, 0.12);
  border: 1px solid rgba(212, 175, 55, 0.45);
  color: #E8C874;
  border-radius: 2px;
}

.page-home .featured-card__code {
  font-family: var(--font-mono);
  font-size: 11px;
  color: #8A8FA3;
}

.page-home .featured-card__title {
  font-size: 16px;
  font-weight: 600;
  margin: 0 0 6px;
}

.page-home .featured-card__text {
  font-size: 13px;
  line-height: 1.55;
  color: #8A8FA3;
  margin: 0 0 10px;
}

.page-home .featured-card__link {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 12px;
  color: #00C2FF;
  text-decoration: none;
}

.page-home .featured-card__link:hover {
  text-decoration: underline;
}

/* ===== 帮助条 ===== */
.page-home .help-note {
  padding: 28px 0 36px;
  background: #12061F;
  border-top: 1px solid rgba(212, 175, 55, 0.15);
}

.page-home .help-note__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.page-home .help-note__text {
  font-size: 14px;
  color: #8A8FA3;
  margin: 0;
}

.page-home .help-note__actions {
  display: flex;
  gap: 20px;
}

.page-home .help-note__link {
  font-family: var(--font-mono);
  font-size: 13px;
  color: #00C2FF;
  text-decoration: none;
}

.page-home .help-note__link--quiet {
  color: #8A8FA3;
}

.page-home .help-note__link:hover {
  text-decoration: underline;
}

/* ===== 桌面端断点 ===== */
@media (min-width: 768px) {
  .page-home .home-hero__inner {
    flex-direction: row;
    align-items: center;
    gap: 36px;
    padding-top: 0;
  }

  .page-home .hero-copy {
    padding-top: 60px;
    flex: 1.05;
  }

  .page-home .hero-visual {
    flex: 1;
    margin-top: 0;
  }

  .page-home .hero-index {
    flex-direction: row;
    gap: 40px;
  }

  .page-home .hero-index__col:first-child {
    min-width: 380px;
  }

  .page-home .guide-section__grid {
    flex-direction: row;
    align-items: center;
  }

  .page-home .guide-section__media {
    width: 260px;
  }

  .page-home .version-list {
    flex-direction: row;
    gap: 16px;
  }

  .page-home .version-card {
    flex: 1;
  }

  .page-home .featured-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }

  .page-home .timeline-log__row {
    padding: 10px 16px;
  }

  .page-home .tag-list {
    columns: 2;
  }
}

@media (min-width: 1024px) {
  .page-home .home-hero {
    min-height: 640px;
  }

  .page-home .hero-copy {
    padding-right: 0;
  }

  .page-home .hero-visual__img {
    min-height: 320px;
    object-fit: cover;
  }

  .page-home .hero-index {
    padding-top: 72px;
  }
}

@media (max-width: 360px) {
  .page-home .hero-stats {
    gap: 8px;
  }

  .page-home .hero-stats__item {
    min-width: 62px;
    padding: 8px;
  }

  .page-home .tag-list {
    columns: 1;
  }
}

.page-home {
  --x: inherit;
  --y: inherit;
}
