.page-home {
  --home-radius: 20px;
  --home-section-gap: 5rem;
  overflow-x: hidden;
}
.page-home .section-block {
  padding: var(--home-section-gap) 0;
}
@media (min-width: 768px) {
  .page-home .section-block {
    padding: 6.5rem 0;
  }
}
.page-home .section-heading__title {
  font-size: clamp(2.2rem, 4.6vw, 3.6rem);
  line-height: 1.04;
  letter-spacing: -0.02em;
}
.page-home .section-heading__desc {
  max-width: 44rem;
}

.page-home__hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  background: var(--color-navy);
  color: var(--color-paper);
}
.page-home__hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.28;
}
.page-home__hero::after {
  content: "";
  position: absolute;
  top: -32%;
  right: -18%;
  width: 70%;
  height: 130%;
  background: linear-gradient(135deg, rgba(45, 108, 223, 0.45), rgba(123, 97, 255, 0.12) 60%, rgba(57, 255, 20, 0.06));
  transform: skewX(-14deg);
  z-index: 0;
  mix-blend-mode: screen;
  pointer-events: none;
}
.page-home__hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--content-max);
  margin-inline: auto;
  padding: 5.5rem 1.5rem 3rem;
}
.page-home__hero-kicker {
  margin: 1rem 0 0;
  font-family: var(--font-data);
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-neon);
}
.page-home__hero-title {
  margin: 1rem 0 0;
  font-family: var(--font-title);
  font-size: clamp(3.4rem, 11vw, 7rem);
  font-weight: 900;
  line-height: 0.92;
  letter-spacing: -0.04em;
}
.page-home__hero-title-accent {
  color: var(--color-neon);
}
.page-home__hero-lead {
  margin: 1.5rem 0 0;
  max-width: 34rem;
  font-size: 1.08rem;
  line-height: 1.75;
  color: rgba(245, 240, 230, 0.8);
}
.page-home__hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 2rem;
}
.page-home__hero .btn--ghost {
  border-color: rgba(245, 240, 230, 0.35);
  color: var(--color-paper);
}
.page-home__hero .btn--ghost:hover {
  border-color: var(--color-neon);
  color: var(--color-neon);
}
.page-home__hero-topics {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 2rem;
}
.page-home__hero-topic {
  display: inline-flex;
  align-items: center;
  padding: 0.45rem 0.95rem;
  border: 1px solid rgba(245, 240, 230, 0.3);
  border-radius: 999px;
  font-size: 0.8rem;
  color: rgba(245, 240, 230, 0.85);
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
}
.page-home__hero-topic:hover {
  border-color: var(--color-neon);
  color: var(--color-neon);
  background: rgba(57, 255, 20, 0.06);
}
.page-home__hero-stats {
  display: flex;
  gap: 1.75rem;
  margin-top: 2.5rem;
  padding-top: 1.4rem;
  border-top: 1px solid rgba(245, 240, 230, 0.18);
}
.page-home__hero-stat {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}
.page-home__hero-stat-num {
  font-family: var(--font-data);
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--color-neon);
  line-height: 1;
}
.page-home__hero-stat-label {
  font-size: 0.78rem;
  color: rgba(245, 240, 230, 0.68);
}
.page-home__hero-slice {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 6px;
  background: linear-gradient(90deg, var(--color-neon), var(--color-blue));
  transform: skewY(-1deg);
  z-index: 1;
  pointer-events: none;
}
@media (min-width: 768px) {
  .page-home__hero {
    min-height: 680px;
  }
  .page-home__hero-inner {
    padding: 6rem 3rem 6rem;
  }
  .page-home__hero-stats {
    position: absolute;
    right: 3rem;
    bottom: 0.5rem;
    margin-top: 0;
    padding-top: 0;
    border-top: none;
    gap: 2.75rem;
  }
  .page-home__hero-stat-num {
    font-size: 2.1rem;
  }
}

.page-home__panel {
  position: relative;
}
.page-home__panel::before {
  content: "01";
  position: absolute;
  top: 2rem;
  right: 1.5rem;
  z-index: 0;
  font-family: var(--font-title);
  font-size: clamp(5rem, 10vw, 8rem);
  font-weight: 900;
  line-height: 1;
  color: rgba(26, 26, 26, 0.045);
  pointer-events: none;
}
.page-home__panel .section-heading,
.page-home__venur .section-heading,
.page-home__cases .section-heading {
  position: relative;
  z-index: 1;
}
.page-home__panel-grid,
.page-home__venue-grid,
.page-home__case-grid {
  position: relative;
  z-index: 1;
}
.page-home__panel-grid {
  display: grid;
  gap: 2rem;
  margin-top: 2.5rem;
}
@media (min-width: 900px) {
  .page-home__panel-grid {
    grid-template-columns: minmax(0, 3fr) minmax(0, 2fr);
    align-items: start;
  }
}
.page-home__panel-chart {
  padding: 1.25rem;
  background: var(--color-panel);
  border-left: 8px solid var(--color-blue);
  border-radius: var(--home-radius);
}
.page-home__panel-chart svg {
  display: block;
  width: 100%;
  height: auto;
}
.page-home__panel-chart text {
  font-family: var(--font-data);
  fill: var(--color-muted);
  font-size: 11px;
}
.page-home__panel-side {
  display: grid;
  gap: 1.25rem;
}
.page-home__stats-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}
.page-home__stats-grid .data-pair {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  padding: 1rem 1.1rem;
  background: var(--color-panel);
  border-left: 4px solid var(--color-blue);
  border-radius: 14px;
}
.page-home__stats-grid .data-pair:nth-child(even) {
  border-left-color: var(--color-orange);
}
.page-home__stats-grid .data-value {
  font-size: 2rem;
  line-height: 1;
}
.page-home__stats-grid .data-value--neon {
  color: var(--color-neon);
  text-shadow: 0 0 12px rgba(57, 255, 20, 0.35);
}
.page-home__panel-details {
  background: var(--color-panel);
  border-radius: 16px;
  overflow: hidden;
}
.page-home__panel-details summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  cursor: pointer;
  padding: 1rem 1.2rem;
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 0.98rem;
  list-style: none;
}
.page-home__panel-details summary::-webkit-details-marker {
  display: none;
}
.page-home__panel-details summary::after {
  content: "+";
  font-family: var(--font-data);
  font-weight: 700;
  color: var(--color-blue);
}
.page-home__panel-details[open] summary {
  border-bottom: 1px solid rgba(26, 26, 26, 0.08);
}
.page-home__panel-details[open] summary::after {
  content: "−";
  color: var(--color-neon);
}
.page-home__panel-details p {
  margin: 0;
  padding: 1rem 1.2rem 0.6rem;
  font-size: 0.88rem;
  line-height: 1.6;
  color: var(--color-muted);
}
.page-home__panel-leagues {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  padding: 0.4rem 1.2rem 1.2rem;
}

.page-home__injury-grid {
  display: grid;
  gap: 2.5rem;
}
@media (min-width: 900px) {
  .page-home__injury-grid {
    grid-template-columns: minmax(220px, 0.7fr) minmax(0, 1.3fr);
    align-items: center;
  }
}
.page-home__injury-media {
  max-width: 320px;
  margin-inline: auto;
}
.page-home__injury-img {
  display: block;
  width: 100%;
  height: auto;
  max-width: 100%;
  border-radius: 26px;
  box-shadow: 18px 18px 0 rgba(255, 107, 53, 0.16);
}
.page-home__injury-content .section-heading {
  margin-bottom: 0;
}
.page-home__injury-list {
  display: grid;
  gap: 1rem;
  margin-top: 1.75rem;
}
.page-home__injury-item {
  background: var(--color-paper);
  border-left: 6px solid var(--color-orange);
  border-radius: 16px;
  overflow: hidden;
  transition: border-color 0.2s ease;
}
.page-home__injury-item[open] {
  border-left-color: var(--color-neon);
}
.page-home__injury-item summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.2rem;
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 0.98rem;
  cursor: pointer;
  list-style: none;
}
.page-home__injury-item summary::-webkit-details-marker {
  display: none;
}
.page-home__injury-item summary::after {
  content: "+";
  font-family: var(--font-data);
  font-weight: 700;
  color: var(--color-orange);
}
.page-home__injury-item[open] summary::after {
  content: "−";
  color: var(--color-neon);
}
.page-home__injury-item ul {
  margin: 0;
  padding: 0.4rem 1.2rem 1.1rem;
  list-style: none;
}
.page-home__injury-item li {
  display: grid;
  grid-template-columns: 1.1fr 1fr 0.9fr;
  gap: 0.75rem;
  padding: 0.6rem 0;
  border-top: 1px solid rgba(26, 26, 26, 0.08);
  font-size: 0.88rem;
}
.page-home__injury-item li span:first-child {
  font-weight: 600;
}
.page-home__injury-item li span:nth-child(2) {
  color: var(--color-muted);
}
.page-home__injury-item li span:last-child {
  font-family: var(--font-data);
  font-size: 0.8rem;
  text-align: right;
  color: var(--color-orange);
}

.page-home__venue {
  position: relative;
}
.page-home__venue::before {
  content: "03";
  position: absolute;
  top: 2rem;
  right: 1.5rem;
  z-index: 0;
  font-family: var(--font-title);
  font-size: clamp(5rem, 10vw, 8rem);
  font-weight: 900;
  line-height: 1;
  color: rgba(26, 26, 26, 0.045);
  pointer-events: none;
}
.page-home__venue-grid {
  display: grid;
  gap: 2.5rem;
}
@media (min-width: 960px) {
  .page-home__venue-grid {
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
    align-items: center;
  }
}
.page-home__venue-copy,
.page-home__case-copy {
  position: relative;
  z-index: 1;
}
.page-home__venue-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1.5rem;
}
.page-home__venue-facts {
  margin: 1.6rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.7rem;
}
.page-home__venue-facts li {
  position: relative;
  padding-left: 1.5rem;
  font-size: 0.93rem;
  color: var(--color-muted);
  line-height: 1.55;
}
.page-home__venue-facts li::before {
  content: "▸";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--color-orange);
  font-weight: 700;
}
.page-home__venue-figure,
.page-home__case-figure {
  margin: 0;
}
.page-home__venue-figure img,
.page-home__case-figure img {
  display: block;
  width: 100%;
  height: auto;
  max-width: 100%;
  border-radius: var(--home-radius);
}
.page-home__venue-figure img {
  border-bottom: 8px solid var(--color-purple);
}
.page-home__venue-figure figcaption,
.page-home__case-figure figcaption {
  margin-top: 0.7rem;
  font-family: var(--font-data);
  font-size: 0.8rem;
  color: var(--color-muted);
  text-align: right;
}

.page-home__cases {
  position: relative;
  color: var(--color-paper);
  background: var(--color-navy);
}
.page-home__cases::after {
  content: "04";
  position: absolute;
  top: 2rem;
  right: 1.5rem;
  z-index: 0;
  font-family: var(--font-title);
  font-size: clamp(5rem, 10vw, 8rem);
  font-weight: 900;
  line-height: 1;
  color: rgba(245, 240, 230, 0.05);
  pointer-events: none;
}
.page-home__cases .section-heading__title {
  color: var(--color-paper);
}
.page-home__cases .section-heading__desc {
  color: rgba(245, 240, 230, 0.72);
}
.page-home__case-grid {
  display: grid;
  gap: 2.5rem;
}
@media (min-width: 900px) {
  .page-home__case-grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr);
    align-items: center;
  }
}
.page-home__case-features {
  margin: 1.6rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.9rem;
}
.page-home__case-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  padding: 1rem 1.1rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 14px;
  font-size: 0.92rem;
  line-height: 1.55;
  color: rgba(245, 240, 230, 0.85);
}
.page-home__case-features li::before {
  content: "//";
  font-family: var(--font-data);
  color: var(--color-neon);
  font-weight: 700;
  flex-shrink: 0;
}
.page-home__case-figure img {
  border-bottom: 8px solid var(--color-neon);
}
.page-home__case-figure figcaption {
  color: rgba(245, 240, 230, 0.55);
}

.page-home__channel-grid {
  display: grid;
  gap: 1.2rem;
  margin-top: 2.5rem;
}
@media (min-width: 720px) {
  .page-home__channel-grid {
    grid-template-columns: repeat(6, 1fr);
  }
  .page-home__channel-card:nth-child(1) {
    grid-column: span 4;
  }
  .page-home__channel-card:nth-child(2) {
    grid-column: span 2;
  }
  .page-home__channel-card:nth-child(3) {
    grid-column: span 3;
  }
  .page-home__channel-card:nth-child(4) {
    grid-column: span 3;
  }
  .page-home__channel-card:nth-child(5) {
    grid-column: span 6;
  }
}
.page-home__channel-card {
  position: relative;
  display: block;
  padding: 1.6rem 1.5rem;
  background: var(--color-panel);
  border-radius: 18px;
  text-decoration: none;
  color: inherit;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}
.page-home__channel-card:nth-child(2) {
  background: var(--color-ink);
  color: var(--color-paper);
}
.page-home__channel-card:nth-child(2) .page-home__channel-desc {
  color: rgba(245, 240, 230, 0.72);
}
.page-home__channel-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 28px rgba(26, 26, 26, 0.12);
}
.page-home__channel-card:nth-child(2):hover {
  box-shadow: 0 14px 28px rgba(26, 26, 26, 0.28);
}
.page-home__channel-title {
  margin: 0 0 0.55rem;
  font-family: var(--font-title);
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -0.01em;
}
.page-home__channel-desc {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.55;
  color: var(--color-muted);
}
