.page-home {
  background: var(--c-bg);
  color: var(--c-text);
  overflow-x: hidden;
  font-family: var(--font-sans);
}

.page-home * {
  box-sizing: border-box;
}

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

.page-home a {
  text-decoration: none;
}

.page-home .container {
  margin: 0 auto;
}

.page-home .home-crumbs-wrap {
  margin-bottom: 36px;
}

.page-home .crumbs {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: rgba(230, 234, 242, 0.55);
  letter-spacing: 0.04em;
}

.page-home .home-hero {
  position: relative;
  padding: calc(var(--header-h) + 32px) 0 72px;
  background:
    radial-gradient(ellipse at 15% 12%, rgba(0, 255, 136, 0.12) 0%, transparent 46%),
    radial-gradient(ellipse at 88% 22%, rgba(0, 229, 255, 0.12) 0%, transparent 52%);
}

.page-home .home-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--c-grid) 1px, transparent 1px),
    linear-gradient(90deg, var(--c-grid) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.8) 0%, transparent 92%);
  pointer-events: none;
}

.page-home .home-hero::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(0, 255, 136, 0.4) 30%, rgba(0, 229, 255, 0.5) 70%, transparent 100%);
  pointer-events: none;
}

.page-home .hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.page-home .hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 20px;
  padding: 8px 16px;
  border: 1px solid var(--c-border);
  border-radius: var(--radius-pill);
  background: rgba(26, 31, 54, 0.6);
  font-size: 0.84rem;
  letter-spacing: 0.06em;
  color: var(--c-silver);
  backdrop-filter: blur(8px);
}

.page-home .hero-kicker .status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--c-neon);
  animation: home-pulse 1.8s ease-out infinite;
}

@keyframes home-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(0, 255, 136, 0.4);
  }
  70% {
    box-shadow: 0 0 0 8px rgba(0, 255, 136, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(0, 255, 136, 0);
  }
}

.page-home .hero-title {
  margin: 0 0 20px;
  font-size: clamp(1.8rem, 4.6vw, 3.2rem);
  font-weight: 700;
  line-height: 1.18;
  letter-spacing: -0.02em;
  color: var(--c-text);
}

.page-home .hero-accent {
  color: var(--c-neon);
  box-shadow: inset 0 -6px 0 rgba(0, 255, 136, 0.16);
}

.page-home .hero-desc {
  margin: 0 0 28px;
  font-size: 1.04rem;
  line-height: 1.8;
  color: rgba(230, 234, 242, 0.76);
  max-width: 560px;
}

.page-home .hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.page-home .hero-actions .btn,
.page-home .cta-actions .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 0.98rem;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.page-home .hero-actions .btn-primary,
.page-home .cta-actions .btn-primary {
  background: var(--c-neon);
  color: #0b1026;
}

.page-home .hero-actions .btn-ghost,
.page-home .cta-actions .btn-ghost {
  border: 1px solid var(--c-border);
  color: var(--c-text);
}

.page-home .hero-actions .btn-primary:hover,
.page-home .cta-actions .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(0, 255, 136, 0.22);
}

.page-home .hero-actions .btn-ghost:hover,
.page-home .cta-actions .btn-ghost:hover {
  transform: translateY(-2px);
  border-color: var(--c-border-neon);
}

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

.page-home .hero-visual-inner {
  position: relative;
}

.page-home .hero-fig {
  margin: 0;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--c-border);
  background: var(--c-card);
  box-shadow:
    0 30px 80px rgba(0, 0, 0, 0.42),
    0 0 0 1px rgba(0, 255, 136, 0.05);
}

.page-home .hero-fig::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(180deg, transparent 0%, rgba(0, 255, 136, 0.04) 50%, transparent 100%);
  background-size: 100% 220%;
  animation: home-scan 4.5s linear infinite;
  pointer-events: none;
}

@keyframes home-scan {
  0% {
    background-position: 0 -120%;
  }
  100% {
    background-position: 0 220%;
  }
}

.page-home .hero-img {
  display: block;
  width: 100%;
  border-radius: 18px 18px 0 0;
}

.page-home .hero-live-panel {
  position: absolute;
  top: 18px;
  right: 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  border-radius: var(--radius-pill);
  background: rgba(11, 16, 38, 0.82);
  border: 1px solid var(--c-border-neon);
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--c-neon);
  backdrop-filter: blur(10px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
}

.page-home .hero-live-panel strong {
  font-weight: 700;
  letter-spacing: 0.02em;
}

.page-home .live-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--c-neon);
  animation: home-pulse 1.8s ease-out infinite;
}

.page-home .hero-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin: 18px 0 0;
}

.page-home .hero-stats .data-stat {
  margin: 0;
  padding: 18px 16px;
  background: rgba(26, 31, 54, 0.86);
  border: 1px solid var(--c-border);
  border-radius: 16px;
  backdrop-filter: blur(10px);
  transition: border-color 0.3s var(--ease), transform 0.3s var(--ease);
}

.page-home .hero-stats .data-stat:hover {
  border-color: var(--c-border-neon);
  transform: translateY(-2px);
}

.page-home .hero-stats .stat-label {
  display: block;
  margin: 0 0 8px;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--c-silver);
}

.page-home .hero-stats .stat-value {
  font-family: var(--font-mono);
  font-size: clamp(1.05rem, 2vw, 1.45rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--c-neon);
  letter-spacing: -0.01em;
}

.page-home .home-section {
  position: relative;
  padding: clamp(64px, 8vw, 96px) 0;
}

.page-home .section-head {
  position: relative;
  max-width: 840px;
  margin: 0 0 56px;
}

.page-home .section-head .section-number,
.page-home .match-copy .section-number,
.page-home .personal-head .section-number {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  color: var(--c-neon);
  padding: 5px 12px;
  border: 1px solid var(--c-border-neon);
  border-radius: var(--radius-pill);
  background: rgba(0, 255, 136, 0.06);
  margin-bottom: 18px;
}

.page-home .section-head .section-title,
.page-home .match-copy .section-title,
.page-home .personal-head .section-title {
  margin: 0 0 14px;
  font-size: clamp(1.7rem, 3.4vw, 2.6rem);
  line-height: 1.22;
  font-weight: 700;
  color: var(--c-text);
  letter-spacing: -0.01em;
}

.page-home .section-head .section-lede,
.page-home .match-copy .section-lede,
.page-home .personal-head .section-lede {
  margin: 0;
  font-size: 1.02rem;
  line-height: 1.8;
  color: rgba(230, 234, 242, 0.74);
  max-width: 680px;
}

.page-home .league-section {
  background: radial-gradient(ellipse at 88% 24%, rgba(123, 47, 190, 0.2) 0%, transparent 58%);
}

.page-home .league-head {
  margin-bottom: 44px;
}

.page-home .league-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}

.page-home .league-visual {
  position: relative;
}

.page-home .league-fig {
  margin: 0;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--c-border);
  background: var(--c-card);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.36);
}

.page-home .league-fig img {
  display: block;
  width: 100%;
  border-radius: 18px 18px 0 0;
}

.page-home .league-connector {
  display: block;
  width: 100%;
  height: auto;
  max-width: 600px;
  margin: 18px auto 0;
}

.page-home .league-copy {
  display: grid;
  gap: 24px;
}

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

.page-home .league-tag {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 16px;
  background: rgba(26, 31, 54, 0.75);
  border: 1px solid var(--c-border);
  border-radius: 14px;
  font-size: 0.92rem;
  color: var(--c-text);
}

.page-home .league-code {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--c-neon);
  background: rgba(0, 255, 136, 0.08);
  border-radius: 6px;
  padding: 4px 6px;
  letter-spacing: 0.05em;
}

.page-home .league-intro {
  margin: 0;
  font-size: 1rem;
  line-height: 1.8;
  color: rgba(230, 234, 242, 0.72);
}

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

.page-home .point-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.page-home .point-icon {
  flex: 0 0 12px;
  width: 12px;
  height: 12px;
  margin-top: 6px;
  border-radius: 50%;
  background: var(--c-neon);
  box-shadow: 0 0 0 4px rgba(0, 255, 136, 0.12);
}

.page-home .point-text {
  display: grid;
  gap: 4px;
}

.page-home .point-text strong {
  color: var(--c-text);
  font-weight: 600;
  font-size: 1rem;
}

.page-home .point-text span {
  color: rgba(230, 234, 242, 0.64);
  font-size: 0.9rem;
  line-height: 1.6;
}

.page-home .match-section {
  background:
    radial-gradient(ellipse at 12% 42%, rgba(0, 229, 255, 0.11) 0%, transparent 52%),
    linear-gradient(180deg, rgba(11, 16, 38, 0.96) 0%, rgba(7, 12, 30, 1) 100%);
  border-top: 1px solid var(--c-border);
  border-bottom: 1px solid var(--c-border);
}

.page-home .match-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}

.page-home .match-visual {
  order: 1;
}

.page-home .match-fig {
  margin: 0;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--c-border);
  background: var(--c-card);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
}

.page-home .match-fig img {
  display: block;
  width: 100%;
  border-radius: 16px 16px 0 0;
}

.page-home .match-copy {
  order: 2;
}

.page-home .match-copy .section-lede {
  margin-bottom: 20px;
}

.page-home .timeline {
  margin: 28px 0;
  padding-left: 28px;
  border-left: 1px solid var(--c-border-neon);
  display: grid;
  gap: 24px;
}

.page-home .timeline-item {
  position: relative;
}

.page-home .timeline-dot {
  position: absolute;
  left: -35px;
  top: 5px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--c-neon);
  box-shadow: 0 0 0 4px rgba(0, 255, 136, 0.15);
}

.page-home .timeline-item h3 {
  margin: 0 0 6px;
  font-size: 1.02rem;
  font-weight: 600;
  color: var(--c-text);
}

.page-home .timeline-item p {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.7;
  color: rgba(230, 234, 242, 0.7);
}

.page-home .match-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 0.98rem;
  border: 1px solid var(--c-border);
  color: var(--c-text);
  transition: transform 0.3s var(--ease), border-color 0.3s var(--ease);
}

.page-home .match-btn:hover {
  transform: translateY(-2px);
  border-color: var(--c-border-neon);
}

.page-home .personal-section {
  background: radial-gradient(ellipse at 50% 0%, rgba(0, 255, 136, 0.1) 0%, transparent 58%);
}

.page-home .personal-head {
  max-width: 820px;
  margin-bottom: 44px;
}

.page-home .personal-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}

.page-home .personal-copy {
  display: grid;
  gap: 22px;
}

.page-home .personal-panel {
  margin: 0;
  padding: 6px 24px;
  background: rgba(26, 31, 54, 0.85);
  border: 1px solid var(--c-border);
  border-radius: 18px;
  backdrop-filter: blur(10px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
}

.page-home .data-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid var(--c-border);
}

.page-home .data-row:last-child {
  border-bottom: none;
}

.page-home .data-row .stat-label {
  font-family: var(--font-mono);
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--c-silver);
}

.page-home .data-row .stat-value {
  font-family: var(--font-mono);
  font-size: 1.18rem;
  font-weight: 700;
  color: var(--c-neon);
}

.page-home .personal-note {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.8;
  color: rgba(230, 234, 242, 0.72);
}

.page-home .personal-copy .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 0.98rem;
  background: var(--c-neon);
  color: #0b1026;
  width: fit-content;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.page-home .personal-copy .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(0, 255, 136, 0.22);
}

.page-home .personal-fig {
  margin: 0;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--c-border);
  background: var(--c-card);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.36);
}

.page-home .personal-fig img {
  display: block;
  width: 100%;
  max-height: 520px;
  object-fit: cover;
  border-radius: 18px 18px 0 0;
}

.page-home .fig-caption {
  padding: 14px 20px;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  letter-spacing: 0.04em;
  color: var(--c-silver);
  border-top: 1px solid var(--c-border);
}

.page-home .home-cta {
  position: relative;
  padding: clamp(64px, 8vw, 100px) 0;
  background:
    radial-gradient(ellipse at 50% 100%, rgba(0, 255, 136, 0.16) 0%, transparent 55%),
    linear-gradient(180deg, rgba(11, 16, 38, 0) 0%, rgba(11, 16, 38, 0.9) 100%);
  border-top: 1px solid var(--c-border);
}

.page-home .cta-inner {
  text-align: center;
  max-width: 680px;
}

.page-home .cta-title {
  margin: 0 0 16px;
  font-size: clamp(1.6rem, 3.2vw, 2.4rem);
  line-height: 1.25;
  color: var(--c-text);
}

.page-home .cta-desc {
  margin: 0 auto 30px;
  max-width: 560px;
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(230, 234, 242, 0.72);
}

.page-home .cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}

.page-home .cta-actions .btn-primary {
  background: var(--c-neon);
  color: #0b1026;
}

.page-home .cta-actions .btn-ghost {
  border: 1px solid var(--c-border);
  color: var(--c-text);
}

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

  .page-home .hero-stats .data-stat {
    padding: 18px 14px;
  }

  .page-home .league-tags {
    grid-template-columns: repeat(4, 1fr);
  }

  .page-home .league-points {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 960px) {
  .page-home .hero-grid {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 64px;
  }

  .page-home .league-layout {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 64px;
  }

  .page-home .match-layout {
    grid-template-columns: 0.95fr 1.05fr;
    gap: 64px;
  }

  .page-home .match-visual {
    order: 2;
  }

  .page-home .match-copy {
    order: 1;
  }

  .page-home .personal-layout {
    grid-template-columns: 0.85fr 1.15fr;
    gap: 64px;
  }

  .page-home .league-points {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 480px) {
  .page-home .hero-stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .page-home .hero-stats .data-stat {
    padding: 14px 12px;
  }

  .page-home .hero-live-panel {
    top: 12px;
    right: 12px;
    padding: 8px 12px;
    font-size: 0.74rem;
  }

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

@media (prefers-reduced-motion: reduce) {
  .page-home *,
  .page-home *::before,
  .page-home *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
