.page-home {
  --page-section-pad: 72px;
  background:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    var(--bg-main);
  background-size: 44px 44px;
  color: var(--text-primary);
  overflow-x: clip;
}

.page-home .breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 20px 22px 0;
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--text-secondary);
}

.page-home .breadcrumb__item + .breadcrumb__item::before {
  content: "·";
  margin-right: 8px;
  color: var(--border-subtle);
}

.page-home .entry-screen {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 520px;
  padding: 56px 0 48px;
  border-bottom: 1px solid var(--border-subtle);
}

.page-home .entry-screen__bg-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.page-home .entry-screen__bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.28;
  filter: grayscale(0.35) contrast(1.18);
}

.page-home .entry-screen__inner {
  position: relative;
  z-index: 1;
}

.page-home .entry-screen__kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--accent-green);
  font-weight: 700;
  margin-bottom: 18px;
}

.page-home .entry-screen__kicker::before {
  content: "";
  width: 26px;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-green), var(--accent-blue));
}

.page-home .entry-screen__title {
  font-family: var(--font-headline);
  font-size: clamp(42px, 9vw, 76px);
  font-weight: 900;
  font-style: italic;
  line-height: 1.04;
  letter-spacing: -0.02em;
  margin: 0 0 28px;
  max-width: 780px;
  position: relative;
  padding-bottom: 0.35em;
}

.page-home .entry-screen__title::after {
  content: "";
  position: absolute;
  left: 2px;
  bottom: 0;
  width: 84px;
  height: 6px;
  background: linear-gradient(90deg, var(--accent-green), var(--accent-blue));
}

.page-home .entry-screen__lead {
  font-size: clamp(16px, 2.4vw, 20px);
  line-height: 1.75;
  color: var(--text-secondary);
  max-width: 660px;
  margin: 0 0 28px;
}

.page-home .entry-screen__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 18px;
}

.page-home .entry-screen__stat {
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
  padding: 10px 14px;
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--text-secondary);
}

.page-home .entry-screen__stat .num {
  font-size: 22px;
  font-weight: 700;
  color: var(--accent-green);
}

.page-home .entry-screen__trust {
  margin: 0;
  font-size: 13px;
  color: var(--text-secondary);
}

.page-home .index-rail {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  padding-block: 48px;
}

.page-home .index-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  padding: 28px;
  background: var(--bg-surface);
  box-shadow: 0 0 0 1px var(--border-subtle);
  transition: box-shadow 0.25s ease, background-color 0.25s ease;
}

.page-home .index-card:hover {
  background: var(--bg-surface-alt);
  box-shadow: 0 0 0 1px var(--accent-blue);
}

.page-home .index-card--schedule {
  clip-path: polygon(24px 0, 100% 0, 100% 100%, 0 100%, 0 24px);
}

.page-home .index-card--report {
  clip-path: polygon(0 0, 100% 0, 100% 100%, 24px 100%, 0 calc(100% - 24px));
}

.page-home .index-card--data {
  clip-path: polygon(24px 0, calc(100% - 24px) 0, 100% 24px, calc(100% - 24px) 100%, 24px 100%, 0 calc(100% - 24px));
}

.page-home .index-card::before {
  content: "";
  display: block;
  width: 40px;
  height: 4px;
  background: var(--accent-blue);
  margin-bottom: 4px;
}

.page-home .index-card--schedule::before {
  background: var(--accent-green);
}

.page-home .index-card--report::before {
  background: var(--accent-blue);
}

.page-home .index-card--data::before {
  background: var(--accent-red);
}

.page-home .index-card .kicker {
  color: var(--text-secondary);
}

.page-home .index-card__title {
  margin: 0;
  font-family: var(--font-headline);
  font-size: 24px;
  font-weight: 900;
  font-style: italic;
  line-height: 1.3;
  color: var(--text-primary);
}

.page-home .index-card__desc {
  margin: 0;
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-secondary);
}

.page-home .schedule-section,
.page-home .report-section,
.page-home .data-section,
.page-home .quick-ops,
.page-home .news-section {
  border-top: 1px solid var(--border-subtle);
  padding: var(--page-section-pad) 0;
}

.page-home .section-head--split {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 36px;
}

.page-home .section-head__title {
  margin: 0;
  font-family: var(--font-headline);
  font-size: 28px;
  font-weight: 900;
  font-style: italic;
  color: var(--text-primary);
}

.page-home .section-head__meta {
  margin: 0;
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--accent-blue);
}

.page-home .schedule-layout,
.page-home .data-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  align-items: start;
}

.page-home .schedule-layout__media img,
.page-home .data-layout__visual img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.page-home .schedule-layout__media img {
  clip-path: polygon(0 0, calc(100% - 28px) 0, 100% 28px, 100% 100%, 0 100%);
}

.page-home .data-layout__visual img {
  clip-path: polygon(32px 0, 100% 0, 100% 100%, 0 100%, 0 32px);
}

.page-home .round-tabs,
.page-home .stat-switcher {
  position: relative;
}

.page-home .round-tabs__radio,
.page-home .stat-switcher__radio {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.page-home .round-tabs__labels,
.page-home .stat-switcher__labels {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border-subtle);
}

.page-home .round-tabs__label,
.page-home .stat-switcher__label {
  font-family: var(--font-mono);
  font-size: 14px;
  line-height: 1;
  color: var(--text-secondary);
  padding: 10px 14px;
  border: 1px solid var(--border-subtle);
  background: var(--bg-surface);
  cursor: pointer;
  transition: color 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}

.page-home .round-tabs__label:hover,
.page-home .stat-switcher__label:hover {
  color: var(--text-primary);
  border-color: var(--accent-blue);
}

.page-home .round-tabs__radio:focus-visible ~ .round-tabs__labels label[for="round-23"],
.page-home .round-tabs__radio:focus-visible ~ .round-tabs__labels label[for="round-22"],
.page-home .round-tabs__radio:focus-visible ~ .round-tabs__labels label[for="round-21"],
.page-home .stat-switcher__radio:focus-visible ~ .stat-switcher__labels label[for="stat-23"],
.page-home .stat-switcher__radio:focus-visible ~ .stat-switcher__labels label[for="stat-22"] {
  outline: 2px solid var(--accent-green);
  outline-offset: 2px;
}

.page-home #round-23:checked ~ .round-tabs__labels label[for="round-23"],
.page-home #round-22:checked ~ .round-tabs__labels label[for="round-22"],
.page-home #round-21:checked ~ .round-tabs__labels label[for="round-21"],
.page-home #stat-23:checked ~ .stat-switcher__labels label[for="stat-23"],
.page-home #stat-22:checked ~ .stat-switcher__labels label[for="stat-22"] {
  background: var(--accent-green);
  border-color: var(--accent-green);
  color: var(--bg-main);
  font-weight: 700;
}

.page-home .round-panel {
  display: block;
}

.page-home .round-panel[data-round] {
  display: none;
}

.page-home #round-23:checked ~ .round-tabs__panels [data-round="23"],
.page-home #round-22:checked ~ .round-tabs__panels [data-round="22"],
.page-home #round-21:checked ~ .round-tabs__panels [data-round="21"] {
  display: block;
}

.page-home .round-panel__title {
  margin: 0 0 16px;
  font-family: var(--font-headline);
  font-size: 20px;
  font-weight: 900;
  font-style: italic;
  color: var(--text-primary);
}

.page-home .match-list {
  list-style: none;
  margin: 0 0 24px;
  padding: 0;
  display: grid;
  gap: 12px;
}

.page-home .match-row {
  padding: 16px 18px;
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  transition: transform 0.2s var(--ease-out), border-color 0.2s ease;
}

.page-home .match-row:hover {
  transform: translateX(4px);
  border-color: var(--accent-blue);
}

.page-home .match-row__meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--text-secondary);
}

.page-home .match-row__line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-size: 17px;
}

.page-home .match-row__team {
  font-weight: 500;
  color: var(--text-primary);
}

.page-home .match-row__score {
  font-family: var(--font-mono);
  font-size: clamp(26px, 4vw, 34px);
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--accent-red);
  transition: transform 0.25s var(--ease-out);
}

.page-home .match-row:hover .match-row__score {
  transform: scale(1.12);
}

.page-home .match-row__stats {
  margin: 10px 0 0;
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--text-secondary);
}

.page-home .schedule-layout__more {
  margin-top: 4px;
}

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

.page-home .report-card {
  display: flex;
  flex-direction: column;
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  transition: border-color 0.25s ease, background-color 0.25s ease;
}

.page-home .report-card:hover {
  border-color: var(--accent-green);
  background: var(--bg-surface-alt);
}

.page-home .report-card--feature {
  grid-column: 1 / -1;
}

.page-home .report-card__media img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.page-home .report-card__body {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  padding: 20px;
  flex: 1;
}

.page-home .report-card .kicker {
  color: var(--accent-blue);
}

.page-home .report-card__title {
  margin: 0;
  font-family: var(--font-headline);
  font-size: 20px;
  font-weight: 900;
  font-style: italic;
  line-height: 1.35;
  color: var(--text-primary);
}

.page-home .report-card__excerpt {
  margin: 0;
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-secondary);
}

.page-home .stat-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.page-home .stat-grid[data-stat-round] {
  display: none;
}

.page-home #stat-23:checked ~ .stat-switcher__panels [data-stat-round="23"],
.page-home #stat-22:checked ~ .stat-switcher__panels [data-stat-round="22"] {
  display: grid;
}

.page-home .stat-item {
  padding: 16px 10px;
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  text-align: center;
}

.page-home .stat-item__num {
  display: block;
  font-family: var(--font-mono);
  font-size: clamp(20px, 2.6vw, 32px);
  font-weight: 700;
  color: var(--accent-green);
}

.page-home .stat-item__label {
  display: block;
  margin-top: 6px;
  font-size: 12px;
  color: var(--text-secondary);
}

.page-home .data-note {
  margin: 24px 0;
  padding: 14px 16px;
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-secondary);
  background: var(--bg-surface);
  border-left: 3px solid var(--accent-blue);
}

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

.page-home .quick-op {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 24px;
  background: var(--bg-surface);
  box-shadow: 0 0 0 1px var(--border-subtle);
  clip-path: polygon(16px 0, 100% 0, 100% calc(100% - 16px), calc(100% - 16px) 100%, 0 100%, 0 16px);
  text-decoration: none;
  color: inherit;
  transition: background-color 0.25s ease, box-shadow 0.25s ease;
}

.page-home .quick-op:hover {
  background: var(--bg-surface-alt);
  box-shadow: 0 0 0 1px var(--accent-blue);
}

.page-home .quick-op::before {
  content: "";
  display: block;
  width: 36px;
  height: 4px;
  background: var(--accent-blue);
  margin-bottom: 4px;
}

.page-home .quick-op:nth-child(2)::before {
  background: var(--accent-green);
}

.page-home .quick-op:nth-child(3)::before {
  background: var(--accent-red);
}

.page-home .quick-op:nth-child(4)::before {
  background: var(--accent-blue);
}

.page-home .quick-op__kicker {
  color: var(--accent-blue);
}

.page-home .quick-op__title {
  margin: 0;
  font-family: var(--font-headline);
  font-size: 18px;
  font-weight: 900;
  font-style: italic;
  line-height: 1.3;
  color: var(--text-primary);
}

.page-home .quick-op__desc {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-secondary);
}

.page-home .news-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-bottom: 28px;
}

.page-home .news-item {
  padding: 20px;
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-left: 4px solid var(--accent-blue);
  transition: background-color 0.25s ease, border-color 0.25s ease;
}

.page-home .news-item:hover {
  background: var(--bg-surface-alt);
  border-left-color: var(--accent-green);
}

.page-home .news-item:nth-child(2) {
  border-left-color: var(--accent-green);
}

.page-home .news-item:nth-child(3) {
  border-left-color: var(--accent-red);
}

.page-home .news-item__title {
  margin: 10px 0 6px;
  font-family: var(--font-headline);
  font-size: 18px;
  font-weight: 900;
  font-style: italic;
  line-height: 1.4;
  color: var(--text-primary);
}

.page-home .news-item__desc {
  margin: 0;
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-secondary);
}

.page-home .news-section__footer {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

@media (prefers-reduced-motion: reduce) {
  .page-home .match-row,
  .page-home .match-row__score,
  .page-home .index-card,
  .page-home .quick-op,
  .page-home .report-card,
  .page-home .news-item,
  .page-home .round-tabs__label,
  .page-home .stat-switcher__label {
    transition: none;
  }
}

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

@media (min-width: 720px) {
  .page-home .index-rail {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

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

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

@media (min-width: 1024px) {
  .page-home .section-head--split {
    flex-direction: row;
    align-items: flex-end;
  }

  .page-home .section-head__title {
    font-size: 34px;
  }

  .page-home .index-rail {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    padding-block: 64px;
  }

  .page-home .schedule-layout,
  .page-home .data-layout {
    grid-template-columns: 0.9fr 1.1fr;
    gap: 48px;
    align-items: center;
  }

  .page-home .schedule-layout__media img,
  .page-home .data-layout__visual img {
    max-height: 420px;
    width: 100%;
    object-fit: cover;
  }

  .page-home .report-grid {
    grid-template-columns: 1.2fr 1fr;
    gap: 20px;
  }

  .page-home .report-card--feature {
    flex-direction: row;
  }

  .page-home .report-card--feature .report-card__media {
    flex: 0 0 46%;
  }

  .page-home .report-card--feature .report-card__media img {
    height: 100%;
    max-height: 360px;
    aspect-ratio: auto;
  }

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

  .page-home .news-list {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }

  .page-home .entry-screen {
    min-height: 560px;
    padding: 72px 0 56px;
  }
}
