.page-home {
  --home-pad-y: clamp(26px, 5vw, 62px);
  --home-pad-x: clamp(18px, 4vw, 56px);
  --home-radius: 26px;
  --home-lean: -8deg;
  width: min(100%, 1240px);
  margin-inline: auto;
  padding-inline: 14px;
}

.page-home > section {
  margin-bottom: clamp(28px, 7vw, 64px);
}

.page-home .home-cmd-panel,
.page-home .home-fix-panel,
.page-home .home-report-panel,
.page-home .home-data-panel {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: var(--home-pad-y) var(--home-pad-x);
  border: 1px solid rgba(232, 240, 255, 0.08);
  border-radius: var(--home-radius);
}

.page-home .home-cmd-panel {
  background:
    radial-gradient(110% 90% at 88% 8%, rgba(57, 255, 20, 0.16), transparent 46%),
    radial-gradient(120% 90% at 5% 95%, rgba(255, 90, 0, 0.14), transparent 46%),
    linear-gradient(135deg, var(--c-grad-start) 0%, var(--c-grad-end) 72%);
  box-shadow: 0 24px 70px rgba(2, 6, 24, 0.45);
}

.page-home .home-cmd-panel::after {
  content: "";
  position: absolute;
  left: 6%;
  right: 6%;
  top: 0;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, var(--c-neon) 30%, var(--c-orange) 72%, transparent);
  filter: blur(0.4px);
  pointer-events: none;
}

.page-home .home-cmd-panel__grid {
  position: absolute;
  inset: 0;
  z-index: 1;
  background-image:
    linear-gradient(rgba(160, 180, 204, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(160, 180, 204, 0.06) 1px, transparent 1px);
  background-size: 40px 40px;
  transform: skewX(-6deg) scale(1.05);
  pointer-events: none;
}

.page-home .home-cmd-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  align-items: center;
}

.page-home .home-cmd-kicker,
.page-home .home-section-kicker {
  display: flex;
  align-items: center;
  gap: 12px;
}

.page-home .home-kicker-index {
  color: var(--c-neon);
  font-size: 14px;
}

.page-home .home-kicker-rule {
  width: 42px;
  height: 2px;
  background: linear-gradient(90deg, var(--c-neon), transparent);
}

.page-home .home-cmd-h1 {
  display: block;
  margin: 18px 0 16px;
  font-family: var(--font-head);
  font-weight: 900;
  font-style: italic;
  font-size: clamp(30px, 6vw, 58px);
  line-height: 1.04;
  letter-spacing: 0.01em;
  color: var(--c-white);
  transform: skewX(var(--home-lean));
}

.page-home .home-cmd-h1__zh,
.page-home .home-cmd-h1__slogan {
  display: block;
}

.page-home .home-cmd-h1__slogan {
  color: var(--c-neon);
  text-shadow: 0 0 22px rgba(57, 255, 20, 0.35);
}

.page-home .home-cmd-desc {
  max-width: 58ch;
  margin: 0 0 20px;
  color: var(--c-mist);
  font-size: 15px;
  line-height: 1.8;
}

.page-home .home-cmd-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 16px;
}

.page-home .home-cmd-trust {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
  font-size: 13px;
  color: var(--c-mist);
}

.page-home .home-trust-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--c-neon);
  box-shadow: 0 0 10px rgba(57, 255, 20, 0.8);
}

.page-home .home-cmd-menu__label {
  display: block;
  margin-bottom: 10px;
  font-size: 12px;
  letter-spacing: 0.08em;
  color: var(--c-mist);
}

.page-home .home-cmd-rows {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.page-home .home-cmd-row {
  display: grid;
  grid-template-columns: 44px 1fr 28px;
  gap: 12px;
  align-items: center;
  padding: 16px 14px;
  border: 1px solid rgba(232, 240, 255, 0.1);
  border-radius: 14px;
  background: linear-gradient(120deg, rgba(26, 36, 86, 0.55), rgba(11, 16, 38, 0.4));
  color: var(--c-white);
  text-decoration: none;
  transition: border-color 0.28s ease, transform 0.28s ease, background 0.28s ease;
}

.page-home .home-cmd-row:hover {
  transform: translateX(8px);
  border-color: rgba(57, 255, 20, 0.7);
  background: linear-gradient(120deg, rgba(57, 255, 20, 0.08), rgba(26, 36, 86, 0.4));
}

.page-home .home-cmd-row:focus-visible {
  outline: 2px solid var(--c-neon);
  outline-offset: 3px;
}

.page-home .home-cmd-row__idx {
  font-size: 15px;
  color: var(--c-neon);
  text-align: center;
  border-right: 1px solid rgba(232, 240, 255, 0.12);
  padding-right: 10px;
}

.page-home .home-cmd-row__txt {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.page-home .home-cmd-row__txt strong {
  font-size: 15px;
  font-weight: 700;
  color: var(--c-white);
}

.page-home .home-cmd-row__txt small {
  font-size: 12px;
  color: var(--c-mist);
}

.page-home .home-cmd-row__go {
  color: var(--c-orange);
  font-style: normal;
  font-size: 18px;
  text-align: center;
}

.page-home .home-sprint-fig {
  display: block;
  width: 100%;
  max-width: 300px;
  height: auto;
  border-radius: 20px;
  object-fit: cover;
  filter: drop-shadow(0 0 24px rgba(57, 255, 20, 0.18));
}

.page-home .home-cmd-panel,
.page-home .home-fix-panel,
.page-home .home-report-panel,
.page-home .home-data-panel {
  box-shadow: 0 22px 60px rgba(2, 5, 22, 0.5);
}

.page-home .home-fix-panel {
  background:
    radial-gradient(80% 70% at 12% 16%, rgba(255, 90, 0, 0.12), transparent 46%),
    linear-gradient(160deg, var(--c-surface) 0%, var(--c-bg) 72%);
}

.page-home .home-fix-panel::before {
  content: "";
  position: absolute;
  right: 8%;
  top: 22px;
  bottom: 22px;
  width: 3px;
  border-radius: 4px;
  background: linear-gradient(180deg, transparent, var(--c-orange) 30%, var(--c-orange) 70%, transparent);
  opacity: 0.7;
  pointer-events: none;
}

.page-home .home-report-panel {
  background:
    radial-gradient(90% 80% at 85% 12%, rgba(57, 255, 20, 0.1), transparent 52%),
    linear-gradient(200deg, rgba(26, 36, 86, 0.5), var(--c-bg) 70%);
}

.page-home .home-data-panel {
  background:
    radial-gradient(90% 80% at 50% 0%, rgba(255, 90, 0, 0.1), transparent 48%),
    linear-gradient(150deg, #0d1430 0%, var(--c-bg) 75%);
}

.page-home .home-section-head {
  position: relative;
  z-index: 2;
  max-width: 720px;
  margin-bottom: 24px;
}

.page-home .headline-section {
  margin: 14px 0 10px;
}

.page-home .home-headline-note {
  display: inline-block;
  margin-left: 10px;
  padding: 4px 12px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  color: var(--c-orange-soft);
  background: rgba(255, 90, 0, 0.12);
  border: 1px solid rgba(255, 90, 0, 0.3);
  vertical-align: middle;
}

.page-home .home-section-desc {
  margin: 0;
  color: var(--c-mist);
  font-size: 14px;
  line-height: 1.7;
}

.page-home .home-fix-acc {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.page-home .home-fix-item {
  border-radius: 14px;
  overflow: hidden;
  background: rgba(11, 16, 38, 0.4);
}

.page-home .home-fix-toggle {
  display: grid;
  grid-template-columns: 84px 1fr 32px;
  gap: 10px;
  align-items: center;
  width: 100%;
  padding: 18px 16px;
  border: 1px solid rgba(232, 240, 255, 0.1);
  background: transparent;
  color: var(--c-white);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 15px;
  text-align: left;
  cursor: pointer;
  transition: background 0.24s ease, border-color 0.24s ease;
}

.page-home .home-fix-toggle[aria-expanded="true"] {
  border-color: rgba(57, 255, 20, 0.35);
  background: linear-gradient(90deg, rgba(57, 255, 20, 0.1), transparent 68%);
}

.page-home .home-fix-toggle:focus-visible {
  outline: 2px solid var(--c-orange);
  outline-offset: 2px;
}

.page-home .home-fix-toggle__idx {
  color: var(--c-orange-soft);
  font-size: 13px;
}

.page-home .home-fix-toggle__label {
  color: var(--c-white);
}

.page-home .home-fix-toggle__state {
  color: var(--c-neon);
  font-size: 20px;
  text-align: center;
  transition: transform 0.24s ease, color 0.24s ease;
}

.page-home .home-fix-toggle[aria-expanded="false"] .home-fix-toggle__state {
  transform: rotate(45deg);
  color: var(--c-orange);
}

.page-home .home-fix-content[data-open="false"] {
  display: none;
}

.page-home .home-fix-content__inner {
  padding: 4px 18px 18px 110px;
}

.page-home .home-fix-content__inner p {
  margin: 0 0 12px;
  color: var(--c-mist);
  font-size: 14px;
  line-height: 1.75;
}

.page-home .home-fix-content__inner a {
  color: var(--c-neon-soft);
  text-decoration: underline;
  text-underline-offset: 3px;
}

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

.page-home .home-fix-tag {
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 12px;
  color: var(--c-mist);
  background: rgba(232, 240, 255, 0.06);
  border: 1px solid rgba(232, 240, 255, 0.1);
}

.page-home .home-report-stack {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.page-home .home-report-card {
  display: flex;
  flex-direction: column;
  padding: 18px;
  border-radius: 18px;
  border: 1px solid rgba(232, 240, 255, 0.08);
  background: rgba(26, 36, 86, 0.35);
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.page-home .home-report-card:hover {
  transform: translateY(-4px);
  border-color: rgba(57, 255, 20, 0.4);
}

.page-home .home-report-card--accent {
  background: linear-gradient(145deg, rgba(255, 90, 0, 0.12), rgba(11, 16, 38, 0.55));
  border-color: rgba(255, 90, 0, 0.28);
}

.page-home .home-report-tag {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #062208;
  background: var(--c-neon);
}

.page-home .home-report-tag--video,
.page-home .home-report-tag--orange {
  color: #fff;
  background: var(--c-orange);
}

.page-home .home-report-tag--live {
  background: var(--c-neon-soft);
}

.page-home .home-report-card h3 {
  margin: 10px 0 8px;
  font-family: var(--font-head);
  font-weight: 800;
  font-style: italic;
  font-size: 20px;
  line-height: 1.2;
  color: var(--c-white);
}

.page-home .home-report-card p {
  margin: 0 0 14px;
  color: var(--c-mist);
  font-size: 14px;
  line-height: 1.7;
}

.page-home .home-report-card a {
  margin-top: auto;
  color: var(--c-neon-soft);
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
}

.page-home .home-report-card a:hover {
  color: var(--c-neon);
}

.page-home .home-report-media img {
  display: block;
  width: 100%;
  height: auto;
  max-width: 100%;
  border-radius: 14px;
  object-fit: cover;
}

.page-home .home-report-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 12px;
}

.page-home .home-data-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

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

.page-home .home-metric {
  padding: 16px 14px;
  border-radius: 16px;
  border: 1px solid rgba(57, 255, 20, 0.22);
  background: linear-gradient(150deg, rgba(57, 255, 20, 0.12), rgba(26, 36, 86, 0.25));
}

.page-home .home-metric__label {
  display: block;
  margin-bottom: 6px;
  font-size: 12px;
  color: var(--c-mist);
}

.page-home .home-metric__value {
  display: block;
  font-size: clamp(20px, 3vw, 28px);
  color: var(--c-white);
}

.page-home .home-data-state {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.page-home .home-data-heat,
.page-home .home-data-chart {
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(232, 240, 255, 0.08);
  background: rgba(11, 16, 38, 0.5);
}

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

.page-home .home-data-heat__note,
.page-home .home-stadium-caption {
  display: block;
  padding: 10px 12px;
  font-size: 12px;
  color: var(--c-mist);
  background: rgba(11, 16, 38, 0.6);
}

.page-home .home-chart-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 16px 6px;
  font-size: 13px;
  color: var(--c-white);
}

.page-home .home-chart-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 700;
  color: var(--c-neon);
}

.page-home .home-chart-badge::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--c-neon);
  box-shadow: 0 0 8px rgba(57, 255, 20, 0.8);
  animation: home-blink 1.6s ease-in-out infinite;
}

.page-home .home-possession {
  display: block;
  width: 100%;
  height: auto;
  min-height: 160px;
}

.page-home .home-possession__line--orange {
  animation: home-dash-flow 4s linear infinite;
}

.page-home .home-chart-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  padding: 8px 16px 16px;
  font-size: 12px;
  color: var(--c-mist);
}

.page-home .home-legend {
  display: inline-flex;
  align-items: center;
}

.page-home .legend-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-right: 5px;
  border-radius: 50%;
}

.page-home .legend-dot--green {
  background: var(--c-neon);
  box-shadow: 0 0 8px rgba(57, 255, 20, 0.7);
}

.page-home .legend-dot--orange {
  background: var(--c-orange);
  box-shadow: 0 0 8px rgba(255, 90, 0, 0.7);
}

.page-home .home-data-stadium {
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(232, 240, 255, 0.08);
  background: rgba(11, 16, 38, 0.5);
}

@keyframes home-blink {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.35;
    transform: scale(0.8);
  }
}

@keyframes home-dash-flow {
  from {
    stroke-dashoffset: 14;
  }
  to {
    stroke-dashoffset: 0;
  }
}

@media (min-width: 640px) {
  .page-home .home-cmd-layout {
    gap: 28px;
  }

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

  .page-home .home-report-card--feature {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: minmax(0, 420px) 1fr;
    align-items: center;
    gap: 20px;
  }

  .page-home .home-data-state {
    display: grid;
    grid-template-columns: minmax(0, 1.3fr) minmax(0, 0.9fr);
    align-items: stretch;
  }

  .page-home .home-data-layout,
  .page-home .home-data-state {
    gap: 18px;
  }
}

@media (min-width: 900px) {
  .page-home .home-cmd-layout {
    grid-template-columns: 0.9fr 1.1fr 190px;
    gap: clamp(24px, 4vw, 48px);
  }

  .page-home .home-sprint-fig {
    max-width: none;
    width: 100%;
    height: 560px;
    object-fit: cover;
    object-position: center;
    border-radius: 28px;
  }

  .page-home .home-cmd-menu {
    padding-left: 20px;
    border-left: 1px solid rgba(232, 240, 255, 0.1);
  }

  .page-home .home-fix-content__inner {
    padding-left: 110px;
  }

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

  .page-home .home-data-layout {
    gap: 24px;
  }

  .page-home .home-data-metrics {
    gap: 16px;
  }

  .page-home .home-metric {
    padding: 20px 18px;
  }
}

@media (min-width: 1100px) {
  .page-home {
    padding-inline: 24px;
  }

  .page-home .home-report-stack {
    grid-template-columns: 1fr 1fr 1fr;
  }

  .page-home .home-report-card--feature {
    grid-column: span 2;
  }
}
