.page-home {
  overflow-x: hidden;
  background: #F7F5EF;
  font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
}

.page-home .home-breadcrumb {
  padding: 16px var(--container-pad) 0;
  max-width: var(--container-max);
  margin: 0 auto;
  color: var(--steel-blue);
  font-size: 0.85rem;
  box-sizing: border-box;
}

.page-home .home-hero {
  position: relative;
  background: var(--deep-blue);
  color: var(--cream);
  padding: 44px 0 76px;
  overflow: hidden;
}

.page-home .home-hero::after {
  content: "";
  position: absolute;
  right: -60px;
  bottom: -80px;
  width: 240px;
  height: 160px;
  background: var(--orange);
  transform: rotate(-12deg) skewX(20deg);
  border-radius: 28px;
  z-index: 1;
  opacity: 0.18;
  pointer-events: none;
}

.page-home .home-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0.6;
  pointer-events: none;
}

.page-home .home-hero__dots {
  position: absolute;
  top: 24px;
  right: -40px;
  width: min(480px, 60vw);
  height: auto;
}

.page-home .home-hero__container {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 36px;
}

.page-home .home-hero__content {
  display: grid;
  gap: 20px;
  align-content: start;
}

.page-home .home-hero__eyebrow {
  justify-self: start;
}

.page-home .home-hero__title {
  font-family: var(--font-headline);
  font-size: clamp(2.1rem, 7vw, 4.4rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin: 0;
}

.page-home .home-hero__lead {
  font-size: 1.05rem;
  line-height: 1.7;
  max-width: 46ch;
  color: rgba(247,245,239,0.85);
  margin: 0;
}

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

.page-home .home-index-btn {
  min-width: 132px;
  justify-content: center;
}

.page-home .home-hero__notice {
  font-size: 0.9rem;
  color: var(--neon-green);
  border-left: 3px solid var(--orange);
  padding-left: 12px;
  margin: 0;
}

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

.page-home .home-hero__imgwrap {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 32px), 0 100%);
  background: var(--steel-blue);
}

.page-home .home-hero__img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  aspect-ratio: 3 / 2;
}

.page-home .home-hero__coords {
  position: absolute;
  right: 10px;
  bottom: 44px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
  font-family: var(--font-numeric);
  font-size: 0.78rem;
  color: var(--neon-green);
  background: rgba(11,26,42,0.6);
  padding: 8px 12px;
  border-radius: var(--radius-md);
  z-index: 3;
}

.page-home .home-hero__collect-card {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 10px;
  margin-top: -32px;
  margin-left: auto;
  width: min(300px, calc(100% - 40px));
  background: var(--cream);
  color: var(--deep-blue);
  border-radius: 20px;
  padding: 18px;
  box-shadow: 0 12px 32px rgba(0,0,0,0.28);
  box-sizing: border-box;
}

.page-home .home-hero__collect-label {
  font-family: var(--font-headline);
  font-size: 0.85rem;
  letter-spacing: 0.02em;
  color: var(--steel-blue);
  margin: 0;
}

.page-home .home-hero__collect-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--orange);
  border: none;
  color: #fff;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 10px 16px;
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.page-home .home-hero__collect-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(255,92,40,0.35);
}

.page-home .home-hero__collect-star {
  font-size: 1.1rem;
}

.page-home .home-hero__collect-tip {
  margin: 0;
  font-size: 0.85rem;
  color: var(--steel-blue);
  opacity: 0;
  transform: translateY(6px);
  transition: opacity var(--transition-base), transform var(--transition-base);
}

.page-home .home-hero__collect-btn:hover + .home-hero__collect-tip,
.page-home .home-hero__collect-btn:focus-visible + .home-hero__collect-tip {
  opacity: 1;
  transform: translateY(0);
}

.page-home .home-chapters {
  position: relative;
  z-index: 5;
  margin-top: -20px;
  display: flex;
  gap: 10px;
  padding: 10px var(--container-pad) 0;
  overflow-x: auto;
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  scrollbar-width: none;
  box-sizing: border-box;
}

.page-home .home-chapters::-webkit-scrollbar {
  display: none;
}

.page-home .home-chapters__item {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  border-radius: var(--radius-pill);
  background: var(--cream);
  border: 1px solid var(--warm-gray);
  color: var(--deep-blue);
  font-size: 0.85rem;
  font-weight: 700;
  text-decoration: none;
  transition: border-color var(--transition-fast), background var(--transition-fast), transform var(--transition-fast);
}

.page-home .home-chapters__item span {
  font-family: var(--font-numeric);
  color: var(--orange);
}

.page-home .home-chapters__item:hover,
.page-home .home-chapters__item:focus {
  border-color: var(--orange);
  background: #fff;
  transform: translateY(-2px);
}

.page-home .home-collect,
.page-home .home-replay,
.page-home .home-mobile,
.page-home .home-changes,
.page-home .home-quick {
  padding-top: 64px;
  padding-bottom: 64px;
}

.page-home .home-collect {
  background: var(--cream);
}

.page-home .home-replay {
  background: var(--deep-blue);
  color: var(--cream);
}

.page-home .home-mobile {
  background: var(--light-blue);
}

.page-home .home-changes {
  background: var(--cream);
}

.page-home .home-quick {
  background: var(--deep-blue);
  color: var(--cream);
}

.page-home .home-section-heading {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  margin-bottom: 36px;
}

.page-home .home-section-heading::after {
  content: "";
  flex: 1;
  height: 2px;
  background: var(--warm-gray);
  align-self: center;
  margin-left: 8px;
}

.page-home .home-replay .home-section-heading::after,
.page-home .home-quick .home-section-heading::after {
  background: rgba(183,196,207,0.3);
}

.page-home .home-section-heading .chapter-num {
  font-family: var(--font-numeric);
  font-size: 3rem;
  line-height: 1;
  color: var(--orange);
  text-decoration: none;
}

.page-home .home-replay .home-section-heading .chapter-num,
.page-home .home-quick .home-section-heading .chapter-num {
  color: var(--neon-green);
}

.page-home .home-replay .section-title,
.page-home .home-quick .section-title {
  color: var(--cream);
}

.page-home .home-replay .eyebrow,
.page-home .home-quick .eyebrow {
  color: var(--neon-green);
}

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

.page-home .home-collect__content {
  display: grid;
  gap: 20px;
}

.page-home .home-collect__lead {
  font-size: 1.08rem;
  line-height: 1.7;
  color: var(--brown-black);
  max-width: 54ch;
  margin: 0;
}

.page-home .home-collect__media {
  border-radius: var(--radius-lg);
  overflow: hidden;
  max-width: 360px;
}

.page-home .home-collect__media img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

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

.page-home .home-collect__list li {
  position: relative;
  padding-left: 24px;
  color: var(--deep-blue);
  line-height: 1.6;
}

.page-home .home-collect__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--orange);
}

.page-home .home-collect__aside {
  background: var(--light-blue);
  border-radius: var(--radius-lg);
  padding: 24px;
  display: grid;
  gap: 16px;
  align-content: start;
}

.page-home .home-collect__sample {
  display: grid;
  gap: 12px;
}

.page-home .home-collect__sample-item {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--cream);
  padding: 12px 14px;
  border-radius: var(--radius-md);
  border-left: 4px solid var(--orange);
}

.page-home .home-collect__tag {
  font-family: var(--font-numeric);
  font-size: 0.8rem;
  color: var(--steel-blue);
  background: var(--light-blue);
  padding: 2px 8px;
  border-radius: var(--radius-pill);
  white-space: nowrap;
}

.page-home .home-collect__sample-item strong {
  display: block;
  font-size: 0.95rem;
  color: var(--brown-black);
}

.page-home .home-collect__time {
  font-family: var(--font-numeric);
  font-size: 0.8rem;
  color: var(--steel-blue);
}

.page-home .home-collect__note {
  font-size: 0.88rem;
  color: var(--steel-blue);
  line-height: 1.6;
  margin: 0;
}

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

.page-home .home-replay__lead {
  font-size: 1.08rem;
  line-height: 1.7;
  color: var(--cream);
  max-width: 54ch;
  margin: 0;
}

.page-home .home-replay__visual {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(183,196,207,0.3);
}

.page-home .home-replay__visual img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.page-home .home-replay__panel {
  display: grid;
  gap: 24px;
  align-content: start;
}

.page-home .home-replay__filter-wrap {
  display: grid;
  gap: 14px;
}

.page-home .home-replay__filter {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.page-home .home-replay__radio {
  position: absolute;
  opacity: 0;
  pointer-events: none;
  width: 0;
  height: 0;
}

.page-home .home-replay__filter-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 18px;
  border-radius: var(--radius-pill);
  background: rgba(247,245,239,0.08);
  border: 1px solid var(--warm-gray);
  color: var(--cream);
  font-size: 0.85rem;
  font-weight: 700;
  cursor: pointer;
  transition: background var(--transition-fast), border-color var(--transition-fast), color var(--transition-fast);
}

.page-home .home-replay__filter-label:hover {
  border-color: var(--neon-green);
}

.page-home .home-replay__radio:checked + .home-replay__filter-label {
  background: var(--neon-green);
  border-color: var(--neon-green);
  color: var(--deep-blue);
}

.page-home .home-replay__events {
  display: grid;
  gap: 10px;
}

.page-home .home-replay__event {
  display: grid;
  grid-template-columns: 64px 1fr auto;
  align-items: center;
  gap: 12px;
  background: rgba(247,245,239,0.06);
  border: 1px solid rgba(183,196,207,0.24);
  border-radius: var(--radius-md);
  padding: 12px 16px;
}

.page-home .home-replay__time {
  font-family: var(--font-numeric);
  font-size: 1.15rem;
  color: var(--neon-green);
}

.page-home .home-replay__event-name {
  font-weight: 700;
  color: var(--cream);
}

.page-home .home-replay__team {
  font-size: 0.85rem;
  color: var(--warm-gray);
}

.page-home .home-replay__radio[id="rf-goal"]:checked ~ .home-replay__events .home-replay__event:not([data-type="goal"]),
.page-home .home-replay__radio[id="rf-red"]:checked ~ .home-replay__events .home-replay__event:not([data-type="red"]),
.page-home .home-replay__radio[id="rf-sub"]:checked ~ .home-replay__events .home-replay__event:not([data-type="sub"]) {
  display: none;
}

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

.page-home .home-replay__meta div {
  background: rgba(198,255,0,0.08);
  border-radius: var(--radius-md);
  padding: 12px;
  font-size: 0.85rem;
  color: var(--light-blue);
  line-height: 1.5;
}

.page-home .home-replay__stat-num {
  display: block;
  font-family: var(--font-numeric);
  font-size: 1.4rem;
  color: var(--neon-green);
}

.page-home .home-mobile__grid {
  display: grid;
  gap: 28px;
  align-items: center;
}

.page-home .home-mobile__visual {
  max-width: 260px;
  margin: 0 auto;
  border-radius: 32px;
  overflow: hidden;
  border: 8px solid var(--deep-blue);
  box-shadow: 0 20px 40px rgba(11,26,42,0.2);
}

.page-home .home-mobile__visual img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.page-home .home-mobile__lead {
  font-size: 1.08rem;
  line-height: 1.7;
  color: var(--brown-black);
  max-width: 54ch;
  margin: 0 0 20px;
}

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

.page-home .home-mobile__list li {
  position: relative;
  padding-left: 28px;
  color: var(--deep-blue);
  line-height: 1.6;
}

.page-home .home-mobile__list li::before {
  content: "▸";
  position: absolute;
  left: 0;
  color: var(--orange);
  font-size: 1.2rem;
}

.page-home .home-changes__grid {
  display: grid;
  gap: 16px;
}

.page-home .home-changes__item {
  position: relative;
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 24px;
  border-top: 4px solid var(--warm-gray);
  display: grid;
  gap: 10px;
  align-content: start;
}

.page-home .home-changes__item--accent {
  border-top-color: var(--neon-green);
  background: var(--deep-blue);
  color: var(--cream);
}

.page-home .home-changes__num {
  font-family: var(--font-numeric);
  font-size: 1.6rem;
  color: var(--orange);
}

.page-home .home-changes__item--accent .home-changes__num {
  color: var(--neon-green);
}

.page-home .home-changes__title {
  font-family: var(--font-headline);
  font-size: 1.05rem;
  margin: 0;
}

.page-home .home-changes__item p {
  margin: 0;
  line-height: 1.6;
  font-size: 0.92rem;
  color: var(--steel-blue);
}

.page-home .home-changes__item--accent p {
  color: rgba(247,245,239,0.8);
}

.page-home .home-quick__intro {
  color: rgba(247,245,239,0.75);
  line-height: 1.7;
  max-width: 52ch;
  margin: 0 0 28px;
}

.page-home .home-quick__legend {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 20px;
}

.page-home .home-quick__legend-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--light-blue);
}

.page-home .home-quick__grid {
  display: grid;
  gap: 16px;
}

.page-home .home-quick__card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 8px;
  min-height: 132px;
  padding: 20px;
  border-radius: var(--radius-lg);
  background: var(--steel-blue);
  color: var(--cream);
  text-decoration: none;
  font-family: var(--font-headline);
  font-size: 1.1rem;
  border: 1px solid rgba(183,196,207,0.2);
  transition: transform var(--transition-fast), background var(--transition-fast);
  box-sizing: border-box;
}

.page-home .home-quick__card:hover,
.page-home .home-quick__card:focus {
  transform: translateY(-4px);
  background: var(--orange);
  color: #fff;
}

.page-home .home-quick__card-en {
  font-family: var(--font-numeric);
  font-size: 0.75rem;
  color: var(--neon-green);
}

.page-home .home-quick__card:hover .home-quick__card-en,
.page-home .home-quick__card:focus .home-quick__card-en {
  color: #fff;
}

@media (min-width: 768px) {
  .page-home .home-collect,
  .page-home .home-replay,
  .page-home .home-mobile,
  .page-home .home-changes,
  .page-home .home-quick {
    padding-top: 88px;
    padding-bottom: 88px;
  }

  .page-home .home-collect__grid {
    grid-template-columns: 1.1fr 0.9fr;
    align-items: start;
  }

  .page-home .home-replay__grid {
    grid-template-columns: 0.9fr 1.1fr;
    align-items: center;
  }

  .page-home .home-mobile__grid {
    grid-template-columns: 0.8fr 1.2fr;
    align-items: center;
  }

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

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

  .page-home .home-quick__card:first-child {
    grid-column: span 2;
  }
}

@media (min-width: 1024px) {
  .page-home .home-hero__container {
    grid-template-columns: 1.05fr 0.95fr;
    align-items: center;
  }

  .page-home .home-hero__visual {
    min-height: 460px;
  }

  .page-home .home-hero__imgwrap {
    height: 420px;
  }

  .page-home .home-hero__img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: auto;
  }

  .page-home .home-hero__collect-card {
    position: absolute;
    bottom: 28px;
    right: 8px;
    margin-top: 0;
    width: 280px;
  }

  .page-home .home-chapters {
    margin-top: -32px;
  }

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

  .page-home .home-quick__card:first-child {
    grid-column: span 1;
  }
}
