.page-home {
  --home-rail-line: rgba(200, 208, 224, 0.18);
  --home-neon: rgba(155, 77, 255, 0.26);
  --home-amber-glow: rgba(255, 184, 107, 0.18);
  position: relative;
  isolation: isolate;
  overflow-x: clip;
  background:
    radial-gradient(900px 420px at 90% -5%, rgba(155, 77, 255, 0.22), transparent 60%),
    radial-gradient(680px 360px at -10% 18%, rgba(0, 215, 182, 0.12), transparent 60%),
    linear-gradient(180deg, #081530 0%, #0A1A3F 45%, #0D1F42 100%);
  color: var(--silver);
}

.page-home::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image:
    radial-gradient(1.5px 1.5px at 20% 30%, rgba(200, 208, 224, 0.8), transparent 100%),
    radial-gradient(1px 1px at 70% 12%, rgba(200, 208, 224, 0.6), transparent 100%),
    radial-gradient(1.5px 1.5px at 40% 70%, rgba(255, 184, 107, 0.5), transparent 100%),
    radial-gradient(1px 1px at 85% 55%, rgba(155, 77, 255, 0.7), transparent 100%),
    radial-gradient(1px 1px at 10% 85%, rgba(0, 215, 182, 0.5), transparent 100%);
}

.page-home::after {
  content: "";
  position: absolute;
  top: 10%;
  right: -12%;
  width: 440px;
  height: 440px;
  z-index: -1;
  pointer-events: none;
  border-radius: 50%;
  border: 1px solid rgba(155, 77, 255, 0.16);
  transform: rotate(-18deg) scaleX(2.2);
  background: radial-gradient(closest-side, transparent 68%, rgba(155, 77, 255, 0.14) 72%, transparent 76%);
  box-shadow:
    0 0 0 40px rgba(155, 77, 255, 0.04),
    0 0 0 80px rgba(155, 77, 255, 0.02);
}

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

.page-home figure {
  margin: 0;
}

.page-home .breadcrumbs {
  padding-top: 28px;
  padding-bottom: 0;
}

.page-home .home-heading {
  padding-top: 40px;
  padding-bottom: 8px;
}

.page-home .home-heading-kicker {
  display: inline-block;
  font-family: var(--font-data);
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--neon-purple);
  padding: 6px 12px;
  margin-bottom: 14px;
  border: 1px solid rgba(155, 77, 255, 0.32);
  border-radius: 999px;
  background: rgba(155, 77, 255, 0.08);
}

.page-home .home-heading h1 {
  font-family: var(--font-heading);
  font-size: clamp(28px, 5.4vw, 56px);
  line-height: 1.15;
  letter-spacing: 0.01em;
  color: var(--light);
  margin: 0 0 18px;
}

.page-home .home-heading .page-lead {
  max-width: 680px;
  margin: 0;
  font-size: 16px;
  line-height: 1.8;
  color: var(--silver);
}

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

.page-home .section-heading {
  margin-bottom: 32px;
}

.page-home .section-index {
  display: block;
  font-family: var(--font-data);
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 8px;
}

.page-home .section-heading h2 {
  font-family: var(--font-heading);
  font-size: clamp(24px, 4vw, 38px);
  line-height: 1.2;
  color: var(--light);
  margin: 0 0 10px;
}

.page-home .section-heading p {
  color: var(--silver);
  font-size: 15px;
  line-height: 1.7;
  max-width: 640px;
  margin: 0;
}

.page-home .figure-caption {
  margin-top: 12px;
  font-family: var(--font-data);
  font-size: 13px;
  line-height: 1.6;
  color: var(--gray-70);
}

.page-home .home-more-btn {
  margin-top: 8px;
}

.page-home .home-overview {
  padding-top: 48px;
}

.page-home .home-overview-grid {
  display: grid;
  gap: 36px;
}

.page-home .home-overview-lead {
  margin: 18px 0 28px;
  font-size: 17px;
  line-height: 1.8;
  color: var(--light);
  max-width: 640px;
}

.page-home .home-entry-grid {
  margin-bottom: 24px;
}

.page-home .home-entry-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-height: 148px;
  padding: 22px 20px;
  background: linear-gradient(145deg, rgba(16, 38, 75, 0.88), rgba(10, 26, 63, 0.72));
  border: 1px solid var(--home-rail-line);
  border-radius: 16px;
  color: var(--silver);
  text-decoration: none;
  transition: border-color 0.25s var(--ease), box-shadow 0.25s var(--ease), transform 0.25s var(--ease);
}

.page-home .home-entry-card:hover {
  border-color: rgba(155, 77, 255, 0.6);
  box-shadow: 0 0 26px var(--home-neon);
  transform: translateY(-4px);
}

.page-home .home-entry-title {
  font-family: var(--font-heading);
  font-size: 17px;
  font-weight: 600;
  color: var(--light);
}

.page-home .home-entry-card .data-number {
  font-family: var(--font-data);
  font-size: 28px;
  line-height: 1;
  color: var(--neon-purple);
}

.page-home .home-entry-card .data-label {
  font-family: var(--font-data);
  font-size: 13px;
  color: var(--gray-70);
}

.page-home .home-overview-figure img {
  width: 100%;
  border-radius: 18px;
  border: 1px solid var(--home-rail-line);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.3);
}

.page-home .home-season {
  padding-top: 80px;
}

.page-home .home-season-layout {
  display: grid;
  gap: 36px;
  align-items: start;
}

.page-home .home-season-stack {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.page-home .home-season-fold {
  background: linear-gradient(145deg, rgba(16, 38, 75, 0.82), rgba(10, 26, 63, 0.6));
  border: 1px solid var(--home-rail-line);
  border-radius: 16px;
  overflow: hidden;
  transition: border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

.page-home .home-season-fold[data-open] {
  border-color: rgba(155, 77, 255, 0.38);
  box-shadow: 0 0 22px var(--home-neon);
}

.page-home .home-season-fold .archive-fold-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px 20px;
  background: transparent;
  border: 0;
  color: var(--light);
  font-family: var(--font-heading);
  font-size: 17px;
  text-align: left;
  cursor: pointer;
}

.page-home .home-season-fold .archive-fold-icon {
  position: relative;
  flex: 0 0 18px;
  width: 18px;
  height: 18px;
}

.page-home .home-season-fold .archive-fold-icon::before,
.page-home .home-season-fold .archive-fold-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  background: var(--neon-purple);
  transition: transform 0.25s var(--ease);
}

.page-home .home-season-fold .archive-fold-icon::before {
  width: 14px;
  height: 2px;
  transform: translate(-50%, -50%);
}

.page-home .home-season-fold .archive-fold-icon::after {
  width: 2px;
  height: 14px;
  transform: translate(-50%, -50%);
}

.page-home .home-season-fold[data-open] .archive-fold-icon::after {
  transform: translate(-50%, -50%) scaleY(0);
}

.page-home .home-season-fold .archive-fold-panel {
  display: none;
}

.page-home .home-season-fold[data-open] .archive-fold-panel {
  display: block;
}

.page-home .home-season-fold .archive-fold-inner {
  padding: 0 20px 20px;
}

.page-home .home-venue-card {
  padding: 18px;
  background: rgba(10, 26, 63, 0.5);
  border: 1px solid var(--home-rail-line);
  border-radius: 14px;
}

.page-home .home-venue-title {
  margin: 0 0 12px;
  font-size: 16px;
  color: var(--light);
}

.page-home .home-venue-card .data-line {
  margin: 10px 0 0;
  font-family: var(--font-data);
  font-size: 14px;
  color: var(--silver);
}

.page-home .home-season-figure img {
  width: 100%;
  border-radius: 18px;
  border: 1px solid var(--home-rail-line);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.28);
}

.page-home .home-schedule {
  padding-top: 80px;
}

.page-home .home-schedule-layout {
  display: grid;
  gap: 36px;
  align-items: start;
}

.page-home .home-schedule-timeline {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.page-home .schedule-item {
  padding: 12px 10px;
  text-align: center;
  font-size: 14px;
  color: var(--silver);
  background: rgba(16, 38, 75, 0.5);
  border: 1px solid var(--home-rail-line);
  border-radius: 12px;
}

.page-home .schedule-item span {
  display: block;
  margin-top: 4px;
  font-family: var(--font-data);
  font-size: 12px;
  color: var(--gray-70);
}

.page-home .schedule-item.is-key {
  border-color: rgba(255, 184, 107, 0.6);
  background: rgba(255, 184, 107, 0.08);
  color: var(--amber);
  box-shadow: 0 0 18px var(--home-amber-glow);
}

.page-home .schedule-item.is-key span {
  color: var(--amber);
}

.page-home .home-schedule-side {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
}

.page-home .home-schedule-figure img {
  width: 100%;
  border-radius: 18px;
  border: 1px solid var(--home-rail-line);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.28);
}

.page-home .home-replay {
  padding-top: 80px;
}

.page-home .home-replay-layout {
  display: grid;
  gap: 36px;
}

.page-home .home-replay-groups {
  display: grid;
  gap: 28px;
}

.page-home .home-replay-group:not(:first-child) {
  padding-top: 24px;
  border-top: 1px solid var(--home-rail-line);
}

.page-home .home-replay-date {
  margin: 0 0 16px;
  font-family: var(--font-heading);
  font-size: 20px;
  color: var(--teal);
}

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

.page-home .home-replay-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 8px 14px;
  padding: 16px 18px;
  background: rgba(16, 38, 75, 0.6);
  border: 1px solid var(--home-rail-line);
  border-radius: 14px;
  color: var(--silver);
  text-decoration: none;
  transition: border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

.page-home .home-replay-item:hover {
  border-color: rgba(155, 77, 255, 0.5);
  box-shadow: 0 0 20px var(--home-neon);
}

.page-home .home-replay-item .stat-tag {
  grid-row: span 2;
  align-self: start;
}

.page-home .home-replay-title {
  color: var(--light);
  font-size: 15px;
  line-height: 1.5;
}

.page-home .home-replay-item .data-label {
  font-family: var(--font-data);
  font-size: 13px;
  color: var(--gray-70);
}

.page-home .home-replay-figure img {
  width: 100%;
  border-radius: 18px;
  border: 1px solid var(--home-rail-line);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.28);
}

.page-home .home-replay-more {
  margin-top: 28px;
}

.page-home .home-focus {
  padding-top: 80px;
}

.page-home .home-filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 28px;
}

.page-home .home-filter-bar .filter-btn.is-active {
  background: rgba(155, 77, 255, 0.22);
  border-color: var(--neon-purple);
  color: var(--light);
  box-shadow: 0 0 18px var(--home-neon);
}

.page-home .home-focus-grid {
  margin-bottom: 20px;
}

.page-home .home-match-card {
  position: relative;
  padding: 22px 20px;
  background: linear-gradient(145deg, rgba(16, 38, 75, 0.82), rgba(10, 26, 63, 0.72));
  border: 1px solid var(--home-rail-line);
  border-radius: 16px;
  overflow: hidden;
  transition: border-color 0.25s var(--ease), box-shadow 0.25s var(--ease), transform 0.25s var(--ease);
}

.page-home .home-match-card:hover {
  border-color: rgba(155, 77, 255, 0.55);
  box-shadow: 0 0 24px var(--home-neon);
  transform: translateY(-4px);
}

.page-home .home-match-card::after {
  content: "";
  position: absolute;
  right: -30px;
  bottom: -30px;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  border: 1px solid rgba(155, 77, 255, 0.16);
  pointer-events: none;
}

.page-home .home-match-title {
  margin: 14px 0 10px;
  font-size: 20px;
  color: var(--light);
}

.page-home .home-match-card .data-line {
  margin: 0;
  font-family: var(--font-data);
  font-size: 14px;
  line-height: 1.7;
  color: var(--silver);
}

.page-home .home-focus-note {
  margin: 0 0 18px;
  max-width: 680px;
  font-size: 13px;
  line-height: 1.7;
  color: var(--gray-70);
}

@media (min-width: 768px) {
  .page-home .home-overview-grid {
    grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
    gap: 48px;
    align-items: center;
  }

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

  .page-home .home-season-layout {
    grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.9fr);
    gap: 52px;
  }

  .page-home .home-schedule-layout {
    grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
    gap: 48px;
    align-items: center;
  }

  .page-home .home-replay-layout {
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.9fr);
    gap: 48px;
    align-items: start;
  }

  .page-home .home-replay-figure {
    transform: translateY(28px);
  }
}

@media (min-width: 1024px) {
  .page-home .home-schedule-timeline {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .page-home .home-focus-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .page-home .home-season-figure {
    margin-top: 68px;
    transform: rotate(1.5deg);
  }

  .page-home .home-heading {
    padding-top: 56px;
  }

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