.page-home {
  --home-green-glow: rgba(0, 255, 102, 0.16);
  --home-blue-glow: rgba(0, 204, 255, 0.14);
  --home-gold-glow: rgba(255, 215, 0, 0.1);
  overflow-x: hidden;
  background: var(--deep-base);
}

.page-home .home-hero {
  position: relative;
  padding: 48px 0 64px;
  background:
    radial-gradient(760px 420px at 85% -5%, var(--home-blue-glow), transparent 60%),
    radial-gradient(680px 360px at 8% 110%, var(--home-green-glow), transparent 58%),
    var(--deep-base);
}

.page-home .home-hero__bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.page-home .home-hero__bg img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  opacity: 0.2;
}

.page-home .home-hero__grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 26px;
}

.page-home .home-hero__title-block {
  position: relative;
  padding-top: 12px;
}

.page-home .home-hero__context {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-data);
  font-size: 13px;
  letter-spacing: 0.08em;
  color: var(--text-secondary);
  text-transform: uppercase;
  border-left: 2px solid var(--electric-blue);
  padding-left: 12px;
  margin-bottom: 16px;
}

.page-home .home-hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(44px, 10vw, 84px);
  line-height: 0.94;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  margin: 0 0 18px;
  max-width: 620px;
  text-wrap: balance;
}

.page-home .home-hero__lead {
  font-size: 18px;
  line-height: 1.6;
  color: var(--text-secondary);
  max-width: 460px;
  margin: 0 0 28px;
}

.page-home .home-hero__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 28px;
  margin-bottom: 30px;
}

.page-home .home-hero__stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-left: 14px;
  border-left: 2px solid var(--neon-green);
}

.page-home .home-hero__stat .data-num {
  font-size: 28px;
  font-weight: 700;
  line-height: 1;
}

.page-home .home-hero__stat-label {
  font-size: 13px;
  color: var(--text-secondary);
  white-space: nowrap;
}

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

.page-home .home-schedule-card {
  position: relative;
  padding: 28px 24px;
  overflow: hidden;
  background: linear-gradient(160deg, rgba(18, 25, 41, 0.94), rgba(10, 14, 23, 0.78));
  border: 1px solid rgba(0, 255, 102, 0.26);
  border-radius: var(--radius-md);
}

.page-home .home-schedule-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 120px;
  background: linear-gradient(180deg, var(--neon-green), transparent);
}

.page-home .home-schedule-card::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 22px;
  height: 22px;
  background: var(--deep-base);
  clip-path: polygon(100% 0, 100% 100%, 0 100%);
}

.page-home .home-schedule-card__head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.page-home .home-schedule-card__head h2 {
  font-family: var(--font-heading);
  font-size: 24px;
  line-height: 1.15;
  margin: 0;
  letter-spacing: 0.01em;
}

.page-home .home-schedule-card__desc {
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.65;
  margin: 0 0 18px;
}

.page-home .home-schedule-card__filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
}

.page-home .home-schedule-card__filters .tag-pill {
  cursor: pointer;
  transition: transform 0.2s var(--ease), border-color 0.2s var(--ease), background 0.2s var(--ease);
}

.page-home .home-schedule-card__filters .tag-pill:hover {
  transform: translateY(-2px);
}

.page-home .home-schedule-card__list {
  list-style: none;
  margin: 0 0 22px;
  padding: 0;
  display: grid;
  gap: 8px;
}

.page-home .home-schedule-card__list li {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 8px;
  font-size: 14px;
}

.page-home .home-schedule-card__league {
  font-weight: 700;
  color: var(--text-primary);
}

.page-home .home-schedule-card__round {
  font-family: var(--font-data);
  font-size: 13px;
  color: var(--electric-blue);
}

.page-home .home-schedule-card__status {
  font-size: 12px;
  color: var(--neon-green);
  background: rgba(0, 255, 102, 0.08);
  padding: 3px 8px;
  border-radius: 999px;
  white-space: nowrap;
}

.page-home .home-v3-card {
  position: relative;
  padding: 28px 24px;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(0, 204, 255, 0.14), rgba(0, 255, 102, 0.06)), var(--panel-base);
  border: 1px solid rgba(0, 204, 255, 0.3);
  border-radius: var(--radius-md);
}

.page-home .home-v3-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 22px;
  height: 22px;
  background: var(--deep-base);
  clip-path: polygon(0 0, 100% 0, 0 100%);
}

.page-home .home-v3-card h2 {
  font-family: var(--font-heading);
  font-size: 24px;
  line-height: 1.15;
  margin: 12px 0 10px;
}

.page-home .home-v3-card p {
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.65;
  margin: 0 0 16px;
}

.page-home .home-v3-card__media {
  margin-bottom: 18px;
  border-radius: 10px;
  overflow: hidden;
}

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

.page-home .home-module {
  position: relative;
  padding: 56px 0;
}

.page-home .home-module--review {
  background: linear-gradient(180deg, var(--deep-base), #0d1524 100%);
}

.page-home .home-module--archive {
  background: linear-gradient(180deg, #0d1524, var(--deep-base));
}

.page-home .home-module--archive .chapter-num {
  -webkit-text-stroke-color: var(--gold-accent);
}

.page-home .home-module--core .chapter-num {
  -webkit-text-stroke-color: var(--electric-blue);
}

.page-home .home-module--core {
  background: var(--deep-base);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.page-home .home-module::before {
  content: "";
  position: absolute;
  top: 24%;
  left: -8%;
  width: 64%;
  height: 260px;
  background: radial-gradient(circle, var(--home-green-glow), transparent 68%);
  pointer-events: none;
}

.page-home .home-module--review::before {
  background: radial-gradient(circle, var(--home-blue-glow), transparent 68%);
}

.page-home .home-module--archive::before {
  background: radial-gradient(circle, var(--home-gold-glow), transparent 68%);
}

.page-home .home-module__head {
  display: flex;
  align-items: flex-end;
  gap: 16px;
  margin-bottom: 28px;
}

.page-home .home-module__head h2 {
  font-family: var(--font-heading);
  font-size: clamp(26px, 5.4vw, 44px);
  line-height: 1.08;
  margin: 0;
  max-width: 720px;
  text-wrap: balance;
}

.page-home .home-module__grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  align-items: center;
}

.page-home .home-module__content {
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  padding: 26px 24px;
}

.page-home .home-module__content .lead {
  font-size: 20px;
  font-weight: 600;
  line-height: 1.5;
  color: var(--text-primary);
  margin: 0 0 12px;
}

.page-home .home-module__content p {
  color: var(--text-secondary);
  line-height: 1.7;
  margin: 0 0 16px;
}

.page-home .home-check-list {
  list-style: none;
  display: grid;
  gap: 10px;
  margin: 20px 0 24px;
  padding: 0;
}

.page-home .home-check-list li {
  position: relative;
  padding-left: 28px;
  color: var(--text-primary);
  font-size: 15px;
}

.page-home .home-check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 14px;
  height: 14px;
  background: var(--neon-green);
  clip-path: polygon(0 0, 62% 28%, 100% 100%, 34% 68%);
}

.page-home .home-module__media img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: var(--radius-md);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
}

.page-home .home-archive-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 18px 0 24px;
}

.page-home .home-core-grid {
  position: relative;
  align-items: stretch;
}

.page-home .home-core-card {
  position: relative;
  padding: 32px 26px;
  overflow: hidden;
  transition: transform 0.35s var(--ease), border-color 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

.page-home .home-core-card::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 30px;
  height: 30px;
  background: var(--neon-green);
  clip-path: polygon(100% 0, 100% 100%, 0 0);
  opacity: 0.8;
}

.page-home .home-core-card:hover {
  transform: translateY(-8px) rotate(-0.8deg);
  border-color: rgba(0, 255, 102, 0.55);
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.4), 0 0 30px rgba(0, 255, 102, 0.12);
}

.page-home .panel-card--blue.home-core-card::after {
  background: var(--electric-blue);
}

.page-home .panel-card--blue.home-core-card:hover {
  border-color: rgba(0, 204, 255, 0.55);
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.4), 0 0 30px rgba(0, 204, 255, 0.14);
}

.page-home .home-core-card--gold::after {
  background: var(--gold-accent);
}

.page-home .home-core-card--gold:hover {
  border-color: rgba(255, 215, 0, 0.55);
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.4), 0 0 30px rgba(255, 215, 0, 0.12);
}

.page-home .home-core-card__index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 36px;
  line-height: 1;
  color: var(--neon-green);
  background: rgba(0, 255, 102, 0.08);
  width: 52px;
  height: 52px;
  border-radius: 12px;
  margin-bottom: 20px;
}

.page-home .panel-card--blue .home-core-card__index {
  color: var(--electric-blue);
  background: rgba(0, 204, 255, 0.08);
}

.page-home .home-core-card--gold .home-core-card__index {
  color: var(--gold-accent);
  background: rgba(255, 215, 0, 0.08);
}

.page-home .home-core-card h3 {
  font-family: var(--font-heading);
  font-size: 24px;
  line-height: 1.15;
  margin: 0 0 12px;
}

.page-home .home-core-card p {
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.7;
  margin: 0 0 22px;
}

.page-home .home-faq {
  padding: 56px 0 72px;
  background:
    radial-gradient(640px 320px at 92% 4%, var(--home-blue-glow), transparent 62%),
    var(--deep-base);
}

.page-home .home-faq__inner {
  max-width: 880px;
  margin: 0 auto;
}

.page-home .home-faq .accordion {
  margin-top: 8px;
}

.page-home .home-faq__more {
  text-align: center;
  color: var(--text-secondary);
  font-size: 15px;
  margin-top: 28px;
}

.page-home .home-faq__more a {
  color: var(--neon-green);
  text-decoration: underline;
  text-underline-offset: 4px;
}

@media (min-width: 640px) {
  .page-home .home-hero__grid {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }

  .page-home .home-hero__title-block {
    grid-column: 1 / -1;
  }

  .page-home .home-module__grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .page-home .home-module__grid--reverse .home-module__media {
    order: -1;
  }
}

@media (min-width: 1024px) {
  .page-home .home-hero {
    padding: 72px 0 96px;
  }

  .page-home .home-hero__grid {
    grid-template-columns: 5fr 4fr 4fr;
    gap: 32px;
  }

  .page-home .home-hero__title-block {
    grid-column: auto;
    padding-top: 28px;
  }

  .page-home .home-hero__schedule {
    margin-top: 64px;
  }

  .page-home .home-hero__v3 {
    margin-top: 128px;
  }

  .page-home .home-hero h1 {
    font-size: clamp(52px, 6vw, 88px);
  }

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

  .page-home .home-module__head {
    margin-bottom: 40px;
  }

  .page-home .home-module__content {
    padding: 34px 32px;
  }

  .page-home .home-schedule-card,
  .page-home .home-v3-card {
    padding: 30px 28px;
  }

  .page-home .home-core-card {
    padding: 36px 30px;
  }

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

@media (prefers-reduced-motion: reduce) {
  .page-home .home-schedule-card__filters .tag-pill,
  .page-home .home-core-card {
    transition: none;
  }

  .page-home .home-core-card:hover {
    transform: none;
  }
}
