.page-home {
  overflow-x: clip;
}

.page-home .home-breadcrumb-wrap {
  padding-top: 28px;
}

.page-home .home-hero {
  position: relative;
  padding: 48px 0 72px;
  overflow: hidden;
}

.page-home .home-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(42, 61, 92, 0.22) 1px, transparent 1px),
    linear-gradient(90deg, rgba(42, 61, 92, 0.22) 1px, transparent 1px);
  background-size: 44px 44px;
  clip-path: polygon(0 0, 100% 0, 100% 82%, 0 100%);
  pointer-events: none;
}

.page-home .hero-grid {
  display: grid;
  gap: 40px 56px;
  align-items: start;
  position: relative;
  z-index: 1;
}

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

.page-home .hero-main::before {
  content: "";
  display: block;
  width: 128px;
  height: 6px;
  background: linear-gradient(90deg, var(--thermal-orange), transparent);
  margin-bottom: 24px;
}

.page-home .hero-version-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 20px;
  align-items: center;
  margin: 20px 0 8px;
}

.page-home .hero-version-num {
  font-family: var(--font-headline);
  font-size: clamp(5rem, 22vw, 10rem);
  line-height: 0.82;
  color: var(--neon-signal);
  -webkit-text-stroke: 2px var(--thermal-orange);
  text-shadow: 8px 8px 0 var(--ink-void);
  letter-spacing: -0.06em;
}

.page-home .hero-version-code {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.page-home .hero-version-year {
  font-size: 0.8125rem;
  color: var(--steel-blue);
  letter-spacing: 0.18em;
}

.page-home .hero-title {
  font-family: var(--font-headline);
  font-size: clamp(2.4rem, 6vw, 4.4rem);
  line-height: 1.12;
  color: var(--bone-white);
  margin: 24px 0 20px;
}

.page-home .hero-lead {
  font-size: 0.9375rem;
  line-height: 1.95;
  color: var(--steel-blue);
  border-left: 3px solid var(--neon-signal);
  padding-left: 18px;
  max-width: 46em;
}

.page-home .hero-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px 20px;
  margin-top: 36px;
}

.page-home .hero-stat {
  padding: 12px 0;
  border-top: 2px solid var(--grid-line);
}

.page-home .hero-stat dd {
  font-family: var(--font-headline);
  font-size: 1.5rem;
  color: var(--bone-white);
  margin: 8px 0 0;
}

.page-home .hero-stat dt {
  font-size: 0.8125rem;
  color: var(--steel-blue);
}

.page-home .hero-aside {
  position: relative;
  z-index: 1;
  padding-top: 28px;
  border-top: 2px solid var(--grid-line);
}

.page-home .hero-aside-rule {
  display: block;
  width: 64px;
  height: 4px;
  background: var(--thermal-orange);
  margin-bottom: 24px;
}

.page-home .hero-aside-label {
  font-family: var(--font-headline);
  font-size: 1.125rem;
  color: var(--bone-white);
}

.page-home .hero-index {
  list-style: none;
  margin: 24px 0 32px;
  padding: 0;
}

.page-home .hero-index li {
  display: flex;
  gap: 14px;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid var(--grid-line);
  color: var(--bone-white);
  font-size: 0.9375rem;
}

.page-home .hero-index li span {
  font-family: var(--font-headline);
  color: var(--thermal-orange);
  font-size: 0.75rem;
}

.page-home .hero-img {
  height: 220px;
  margin-top: 28px;
}

.page-home .hero-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.85) contrast(1.05);
}

.page-home .quick-entry-section {
  padding: 72px 0;
  background: linear-gradient(180deg, var(--abyss-panel) 0%, var(--deep-space) 100%);
  border-top: 2px solid var(--grid-line);
  border-bottom: 2px solid var(--grid-line);
}

.page-home .section-head-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 40px;
}

.page-home .section-desc {
  color: var(--steel-blue);
  font-size: 0.8125rem;
  max-width: 360px;
  line-height: 1.7;
}

.page-home .quick-layout {
  display: grid;
  gap: 32px;
}

.page-home .quick-visual {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.page-home .heatmap-img {
  height: 240px;
}

.page-home .heatmap-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.88) contrast(1.08);
}

.page-home .quick-visual-note {
  color: var(--steel-blue);
  font-size: 0.8125rem;
  border-left: 2px solid var(--thermal-orange);
  padding-left: 12px;
  line-height: 1.7;
}

.page-home .quick-entry-grid {
  display: grid;
  gap: 18px;
}

.page-home .entry-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 190px;
  padding: 24px;
  background: var(--deep-space);
  border: 2px solid var(--grid-line);
  border-left-width: 4px;
  border-left-color: var(--cyan-trace);
  text-decoration: none;
  overflow: hidden;
  transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.page-home .entry-card:nth-child(2) {
  border-left-color: var(--neon-signal);
}

.page-home .entry-card:nth-child(3) {
  border-left-color: var(--archive-amber);
}

.page-home .entry-card:nth-child(4) {
  border-left-color: var(--thermal-orange);
}

.page-home .entry-card:is(:hover, :focus-visible) {
  transform: translateY(-4px);
  border-color: var(--cyan-trace);
  box-shadow: 8px 8px 0 rgba(5, 8, 13, 0.7);
}

.page-home .entry-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.page-home .entry-index {
  font-family: var(--font-headline);
  font-size: 1rem;
  color: var(--grid-line);
  transition: color 0.2s ease;
}

.page-home .entry-card:is(:hover, :focus-visible) .entry-index {
  color: var(--thermal-orange);
}

.page-home .entry-summary {
  color: var(--steel-blue);
  font-size: 0.875rem;
  line-height: 1.85;
  flex: 1;
  margin: 12px 0 0;
}

.page-home .entry-hover-note {
  margin-top: 16px;
  color: var(--neon-signal);
  font-size: 0.8125rem;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.25s ease, transform 0.25s ease;
  border-bottom: 1px dashed var(--neon-signal);
  align-self: flex-start;
}

.page-home .entry-card:is(:hover, :focus-visible) .entry-hover-note {
  opacity: 1;
  transform: translateY(0);
}

.page-home .match-section {
  padding: 72px 0;
}

.page-home .match-layout {
  display: grid;
  gap: 40px;
}

.page-home .match-list {
  display: grid;
  gap: 32px;
}

.page-home .match-view-block {
  min-width: 0;
}

.page-home .view-block-title {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-headline);
  font-size: 1rem;
  color: var(--bone-white);
  margin: 0 0 16px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--grid-line);
}

.page-home .view-block-title::before {
  content: "";
  width: 18px;
  height: 4px;
  background: var(--cyan-trace);
}

.page-home .match-card {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
  align-items: center;
  padding: 14px 16px;
  background: var(--abyss-panel);
  border: 1px solid var(--grid-line);
  border-left-width: 4px;
  border-left-color: var(--thermal-orange);
  text-decoration: none;
  margin-bottom: 8px;
  transition: background 0.2s ease, box-shadow 0.2s ease;
}

.page-home .match-card:is(:hover, :focus-visible) {
  background: var(--deep-space);
  box-shadow: 4px 4px 0 var(--ink-void);
}

.page-home .match-card-pre {
  border-left-color: var(--cyan-trace);
  opacity: 0.82;
}

.page-home .match-league {
  min-width: 62px;
  text-align: center;
}

.page-home .match-teams {
  flex: 1 1 220px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  color: var(--bone-white);
  font-size: 0.9375rem;
}

.page-home .match-teams .match-vs {
  color: var(--steel-blue);
  font-size: 0.8125rem;
}

.page-home .match-teams .match-score {
  font-family: var(--font-headline);
  font-size: 1rem;
  color: var(--neon-signal);
}

.page-home .match-cards {
  color: var(--steel-blue);
  font-size: 0.8125rem;
  white-space: nowrap;
}

.page-home .match-changes {
  color: var(--archive-amber);
  font-size: 0.8125rem;
  border: 1px solid var(--grid-line);
  padding: 4px 8px;
}

.page-home .match-aside {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.page-home .match-img {
  height: 260px;
}

.page-home .match-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.92) contrast(1.06);
}

.page-home .aside-caption {
  color: var(--steel-blue);
  font-size: 0.8125rem;
  border-left: 2px solid var(--neon-signal);
  padding-left: 12px;
  line-height: 1.7;
}

.page-home .version-section {
  padding: 72px 0;
  background: radial-gradient(circle at 85% 20%, rgba(255, 107, 53, 0.12), transparent 42%);
  border-top: 2px solid var(--grid-line);
}

.page-home .version-log {
  list-style: none;
  margin: 0 0 28px;
  padding: 0;
  display: grid;
  gap: 16px;
}

.page-home .version-item {
  display: flex;
  gap: 20px;
  padding: 20px;
  background: var(--abyss-panel);
  border: 1px solid var(--grid-line);
  border-left: 4px solid var(--neon-signal);
}

.page-home .version-item:nth-child(2) {
  border-left-color: var(--cyan-trace);
}

.page-home .version-item:nth-child(3) {
  border-left-color: var(--archive-amber);
}

.page-home .version-item:nth-child(4) {
  border-left-color: var(--thermal-orange);
}

.page-home .version-item-num {
  font-family: var(--font-headline);
  font-size: 1rem;
  color: var(--thermal-orange);
  line-height: 1.4;
}

.page-home .version-item-body h3 {
  font-family: var(--font-headline);
  font-size: 1.125rem;
  color: var(--bone-white);
  margin: 0 0 8px;
}

.page-home .version-item-body p {
  color: var(--steel-blue);
  font-size: 0.875rem;
  line-height: 1.85;
  margin: 0;
}

.page-home .version-timeline-note {
  color: var(--steel-blue);
  font-size: 0.8125rem;
  line-height: 1.8;
  border-left: 2px solid var(--thermal-orange);
  padding-left: 14px;
  margin: 0 0 32px;
}

.page-home .version-img {
  height: 260px;
}

.page-home .version-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.9) contrast(1.05);
}

.page-home .guide-section {
  padding: 72px 0 40px;
}

.page-home .guide-grid {
  display: grid;
  gap: 40px;
}

.page-home .guide-lead {
  color: var(--steel-blue);
  line-height: 1.95;
  font-size: 0.9375rem;
  max-width: 52em;
}

.page-home .guide-steps {
  list-style: none;
  margin: 32px 0;
  padding: 0;
}

.page-home .guide-steps li {
  display: flex;
  gap: 14px;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid var(--grid-line);
  color: var(--bone-white);
  font-size: 0.9375rem;
  line-height: 1.6;
}

.page-home .guide-steps b {
  font-family: var(--font-headline);
  color: var(--neon-signal);
  font-size: 0.75rem;
}

.page-home .guide-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.page-home .guide-aside {
  position: relative;
}

.page-home .guide-visual {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 240px;
  padding: 32px;
  background:
    linear-gradient(135deg, rgba(198, 255, 0, 0.08), transparent 55%),
    var(--abyss-panel);
  border: 2px solid var(--grid-line);
  clip-path: polygon(0 0, calc(100% - 34px) 0, 100% 34px, 100% 100%, 0 100%);
}

.page-home .guide-visual-bar {
  font-size: 0.9375rem;
  color: var(--steel-blue);
}

.page-home .guide-visual-v {
  font-family: var(--font-headline);
  font-size: 5rem;
  color: transparent;
  -webkit-text-stroke: 2px var(--neon-signal);
  margin-top: 20px;
  line-height: 1;
}

.page-home .guide-visual-divider {
  width: 120px;
  height: 4px;
  background: var(--thermal-orange);
  margin-top: 24px;
}

.page-home .guide-visual-dots {
  margin-top: 20px;
  width: 120px;
  height: 28px;
  background-image: radial-gradient(var(--cyan-trace) 2px, transparent 2px);
  background-size: 14px 14px;
}

.page-home .guide-note {
  margin-top: 20px;
  font-size: 0.8125rem;
  color: var(--steel-blue);
  border-left: 2px solid var(--archive-amber);
  padding-left: 12px;
  line-height: 1.85;
}

.page-home .trust-strip {
  margin-top: 48px;
  padding: 24px 0 72px;
}

.page-home .trust-strip .container {
  padding: 20px 24px;
  border: 2px solid var(--grid-line);
  background: rgba(5, 8, 13, 0.4);
}

.page-home .trust-strip p {
  margin: 0;
  color: var(--steel-blue);
  font-size: 0.8125rem;
  line-height: 1.9;
}

.page-home .trust-strip a {
  color: var(--neon-signal);
  text-decoration: none;
  border-bottom: 1px dashed var(--neon-signal);
}

.page-home .scroll-top-btn {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 40;
  box-shadow: 4px 4px 0 rgba(5, 8, 13, 0.7);
}

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

@media (min-width: 768px) {
  .page-home .hero-img {
    height: 280px;
  }

  .page-home .hero-stats {
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
  }

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

  .page-home .heatmap-img {
    height: 300px;
  }

  .page-home .match-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

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

  .page-home .version-img {
    height: 360px;
  }
}

@media (min-width: 1024px) {
  .page-home .hero-grid {
    grid-template-columns: 1.6fr 0.8fr;
    gap: 56px;
  }

  .page-home .hero-aside {
    border-top: 0;
    padding-top: 0;
    padding-left: 40px;
    border-left: 2px solid var(--grid-line);
  }

  .page-home .hero-img {
    height: 240px;
  }

  .page-home .quick-layout {
    grid-template-columns: 320px 1fr;
    gap: 48px;
    align-items: stretch;
  }

  .page-home .quick-entry-grid {
    gap: 18px;
  }

  .page-home .match-layout {
    grid-template-columns: 1fr 320px;
    gap: 48px;
    align-items: start;
  }

  .page-home .match-img {
    height: 320px;
  }

  .page-home .guide-grid {
    grid-template-columns: 1.2fr 0.8fr;
    gap: 48px;
    align-items: start;
  }
}
