.page-home {
  --ph-dark: #0d1b2a;
  --ph-navy: #16283c;
  --ph-navy-2: #1f3a52;
  --ph-line: #2b4a66;
  --ph-paper: #f4f7fb;
  --ph-ink: #1a2a3a;
  --ph-muted: #2f4257;
  --ph-soft: #e4edf6;
  font-family: var(--font-body);
  background: var(--c-paper);
  color: var(--ph-ink);
  overflow-x: hidden;
}

.page-home a:focus-visible,
.page-home summary:focus-visible {
  outline: 2px solid var(--c-green);
  outline-offset: 2px;
}

.page-home .ph-hero {
  background: var(--ph-dark);
  color: var(--c-white);
  padding: calc(var(--pad) * 1.1) var(--pad) calc(var(--pad) * 1.6);
  position: relative;
}

.page-home .ph-hero::after {
  content: "实时数据";
  position: absolute;
  right: 0;
  bottom: 12px;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(60px, 10vw, 148px);
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px rgba(0, 255, 136, 0.08);
  pointer-events: none;
  z-index: 0;
}

.page-home .ph-hero-inner {
  max-width: var(--container-w);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.page-home .ph-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  letter-spacing: 0.02em;
  color: var(--c-gray);
  padding-bottom: 12px;
  margin-bottom: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.page-home .ph-breadcrumb span[aria-current="page"] {
  color: var(--c-green);
}

.page-home .ph-crumb-sep {
  color: rgba(255, 255, 255, 0.3);
}

.page-home .ph-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: var(--pad);
}

.page-home .ph-injury-panel {
  background: linear-gradient(135deg, var(--ph-navy) 0%, var(--ph-dark) 100%);
  border: 1px solid var(--ph-line);
  padding: clamp(20px, 4vw, 40px);
  clip-path: polygon(0 0, calc(100% - 18px) 0, 100% 18px, 100% 100%, 18px 100%, 0 calc(100% - 18px));
  transition: border-color var(--ease);
}

.page-home .ph-injury-panel:hover {
  border-color: rgba(0, 255, 136, 0.55);
}

.page-home .ph-kicker {
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.08em;
  color: var(--c-green);
  margin: 0 0 10px;
}

.page-home .ph-injury-panel h1 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(30px, 4.6vw, 48px);
  line-height: 1.14;
  margin: 0 0 18px;
  color: var(--c-white);
  max-width: 11em;
}

.page-home .ph-hero-desc {
  font-size: 15px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.78);
  max-width: 38em;
  margin: 0 0 22px;
}

.page-home .ph-flow-line {
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--c-green) 28%, var(--c-green) 72%, transparent);
  background-size: 200% 100%;
  background-position: 0% 0;
  transition: background-position 500ms ease;
  position: relative;
  margin: 0 0 24px;
}

.page-home .ph-flow-line::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--c-green);
  opacity: 0;
  transition: opacity 200ms ease;
}

.page-home .ph-injury-panel:hover .ph-flow-line {
  background-position: 100% 0;
}

.page-home .ph-injury-panel:hover .ph-flow-line::after {
  opacity: 1;
}

.page-home .ph-panel-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(22px, 3vw, 32px);
  margin: 0 0 16px;
  color: var(--c-white);
}

.page-home .ph-injury-tabs {
  position: relative;
}

.page-home .ph-injury-tabs > input[type="radio"] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.page-home .ph-tab-labels {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 16px;
}

.page-home .ph-tab-labels label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border: 1px solid var(--ph-line);
  background: rgba(255, 255, 255, 0.02);
  color: var(--c-white);
  font-family: var(--font-mono);
  font-size: 13px;
  cursor: pointer;
  transition: border-color var(--ease), background-color var(--ease);
}

.page-home .ph-tab-labels label:hover {
  border-color: var(--c-green);
}

.page-home .ph-dot,
.page-home .ph-dot-red,
.page-home .ph-dot-yellow,
.page-home .ph-dot-green {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  display: inline-block;
  flex: 0 0 auto;
}

.page-home .ph-dot-red {
  background: var(--c-red);
  box-shadow: 0 0 12px rgba(255, 51, 85, 0.5);
}

.page-home .ph-dot-yellow {
  background: var(--c-yellow);
  box-shadow: 0 0 10px rgba(255, 204, 0, 0.3);
}

.page-home .ph-dot-green {
  background: var(--c-green);
  box-shadow: 0 0 10px rgba(0, 255, 136, 0.4);
}

.page-home #ph-tab-red:checked ~ .ph-tab-labels .ph-tab-red,
.page-home #ph-tab-yellow:checked ~ .ph-tab-labels .ph-tab-yellow,
.page-home #ph-tab-green:checked ~ .ph-tab-labels .ph-tab-green {
  border-color: var(--c-green);
  box-shadow: 0 0 0 1px rgba(0, 255, 136, 0.3);
}

.page-home .ph-tab-panels {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.page-home .ph-tab-panel {
  display: none;
  padding: 4px 0 8px;
}

.page-home #ph-tab-red:checked ~ .ph-tab-panels .ph-panel-red,
.page-home #ph-tab-yellow:checked ~ .ph-tab-panels .ph-panel-yellow,
.page-home #ph-tab-green:checked ~ .ph-tab-panels .ph-panel-green {
  display: block;
}

.page-home .ph-panel-red {
  border-left: 3px solid var(--c-red);
}

.page-home .ph-panel-yellow {
  border-left: 3px solid var(--c-yellow);
}

.page-home .ph-panel-green {
  border-left: 3px solid var(--c-green);
}

.page-home .ph-tab-panel ul {
  list-style: none;
  margin: 0;
  padding: 8px 0 0 12px;
}

.page-home .ph-tab-panel li {
  padding: 8px 0;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.09);
  font-size: 14px;
  color: rgba(255, 255, 255, 0.9);
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.page-home .ph-pos {
  display: inline-block;
  min-width: 76px;
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--c-gray);
}

.page-home .ph-injury-stats {
  margin-top: 22px;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 10px;
}

.page-home .ph-stat {
  border: 1px solid var(--ph-line);
  padding: 14px 14px;
  background: rgba(0, 0, 0, 0.22);
  transition: border-color var(--ease);
}

.page-home .ph-stat:hover {
  border-color: var(--c-green);
}

.page-home .ph-stat strong {
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: clamp(22px, 4vw, 32px);
  letter-spacing: -0.03em;
  color: var(--c-green);
  display: block;
  line-height: 1.1;
  white-space: nowrap;
}

.page-home .ph-stat span {
  font-size: 12px;
  color: var(--c-gray);
  margin-top: 6px;
  display: block;
}

.page-home .ph-live-feed {
  border: 1px solid var(--ph-line);
  background: var(--ph-dark);
  padding: clamp(20px, 3vw, 28px);
  display: flex;
  flex-direction: column;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 14px), calc(100% - 14px) 100%, 0 100%);
  transition: border-color var(--ease);
}

.page-home .ph-live-feed:hover {
  border-color: rgba(0, 255, 136, 0.45);
}

.page-home .ph-live-feed ul {
  list-style: none;
  margin: 0 0 18px;
  padding: 0;
}

.page-home .ph-live-feed li {
  display: flex;
  gap: 10px;
  align-items: baseline;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  font-size: 14px;
  color: rgba(255, 255, 255, 0.86);
}

.page-home .ph-live-feed time {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--c-green);
  min-width: 34px;
  flex: 0 0 auto;
}

.page-home .ph-hero-btn {
  margin-top: auto;
  color: var(--c-green);
  text-decoration: none;
  font-size: 14px;
  padding-top: 12px;
  border-top: 1px solid var(--ph-line);
  transition: color var(--ease);
}

.page-home .ph-hero-btn:hover {
  color: #c8ffea;
}

.page-home .ph-hero-visual {
  margin-top: 28px;
  overflow: hidden;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 16px), calc(100% - 16px) 100%, 0 100%);
  background: var(--ph-navy);
  border: 1px solid var(--ph-line);
}

.page-home .ph-hero-visual img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  aspect-ratio: 960 / 640;
}

.page-home .ph-db,
.page-home .ph-archive {
  background: var(--c-paper);
  padding: clamp(48px, 7vw, 84px) var(--pad);
}

.page-home .ph-db-inner,
.page-home .ph-report-inner,
.page-home .ph-archive-inner,
.page-home .ph-upgrade-inner {
  max-width: var(--container-w);
  margin: 0 auto;
}

.page-home .ph-section-num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(56px, 9vw, 96px);
  line-height: 0.9;
  letter-spacing: -0.04em;
  color: rgba(0, 255, 136, 0.14);
  -webkit-text-stroke: 1px var(--c-green);
  margin-bottom: 8px;
}

.page-home .ph-db-grid,
.page-home .ph-report-grid,
.page-home .ph-archive-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(20px, 4vw, 48px);
  align-items: center;
}

.page-home .ph-db-visual {
  background: #e9f0f8;
  clip-path: polygon(0 0, 100% 0, calc(100% - 24px) 100%, 0 100%);
  padding: 12px 12px 12px 0;
  transition: box-shadow var(--ease);
}

.page-home .ph-db-visual:hover {
  box-shadow: 10px 10px 0 rgba(0, 255, 136, 0.22);
}

.page-home .ph-db-visual img,
.page-home .ph-report-visual img,
.page-home .ph-archive-visual img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.page-home .ph-db-visual img {
  aspect-ratio: 800 / 500;
}

.page-home .ph-db-content .ph-lead,
.page-home .ph-archive-content .ph-lead {
  font-size: 18px;
  line-height: 1.7;
  color: var(--ph-ink);
  font-weight: 500;
  margin: 0 0 12px;
}

.page-home .ph-db-content p,
.page-home .ph-archive-content p {
  font-size: 15px;
  line-height: 1.8;
  color: var(--ph-muted);
  margin: 0 0 12px;
}

.page-home .ph-db-content h2,
.page-home .ph-report-content h2,
.page-home .ph-archive-content h2,
.page-home .ph-upgrade h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(24px, 3.2vw, 36px);
  line-height: 1.2;
  margin: 0 0 14px;
}

.page-home .ph-db-content h2,
.page-home .ph-archive-content h2 {
  color: var(--ph-ink);
}

.page-home .ph-filter-list {
  list-style: none;
  margin: 18px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  gap: 10px;
}

.page-home .ph-filter-list li {
  background: var(--ph-soft);
  color: var(--ph-ink);
  font-family: var(--font-mono);
  font-size: 13px;
  padding: 12px 12px;
  border-left: 3px solid var(--c-green);
  transition: background-color var(--ease);
}

.page-home .ph-filter-list li:hover {
  background: #d7e6f2;
}

.page-home .ph-action-row {
  margin-top: 20px;
}

.page-home .ph-cta {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  padding: 14px 22px;
  text-decoration: none;
  transition: background-color var(--ease), color var(--ease), border-color var(--ease);
  cursor: pointer;
}

.page-home .ph-cta-solid {
  background: var(--c-green);
  color: var(--ph-dark);
  clip-path: polygon(0 0, 100% 0, calc(100% - 10px) 100%, 0 100%);
}

.page-home .ph-cta-solid:hover {
  background: var(--c-white);
}

.page-home .ph-cta-ghost,
.page-home .ph-cta-ghost-dark {
  color: var(--c-green);
  border: 1px solid rgba(0, 255, 136, 0.55);
  clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 100%, 0 100%);
}

.page-home .ph-cta-ghost:hover {
  background: rgba(0, 255, 136, 0.12);
  color: var(--c-white);
}

.page-home .ph-cta-ghost-dark {
  color: var(--ph-ink);
  border: 1px solid var(--ph-ink);
}

.page-home .ph-cta-ghost-dark:hover {
  background: var(--c-green);
  color: var(--ph-dark);
  border-color: var(--c-green);
}

.page-home .ph-report {
  background: var(--ph-dark);
  color: var(--c-white);
  padding: clamp(48px, 7vw, 84px) var(--pad);
  position: relative;
}

.page-home .ph-report .ph-section-num {
  color: rgba(255, 255, 255, 0.08);
}

.page-home .ph-report-content h2 {
  color: var(--c-white);
}

.page-home .ph-report-content .ph-lead {
  color: rgba(255, 255, 255, 0.86);
  font-size: 18px;
  line-height: 1.7;
  margin: 0 0 12px;
}

.page-home .ph-report-content p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 15px;
  line-height: 1.8;
  margin: 0 0 12px;
}

.page-home .ph-league-filter {
  border: 1px solid var(--ph-line);
  background: rgba(255, 255, 255, 0.03);
  margin: 18px 0 22px;
  transition: border-color var(--ease);
}

.page-home .ph-league-filter:hover {
  border-color: rgba(0, 255, 136, 0.5);
}

.page-home .ph-league-filter summary {
  cursor: pointer;
  padding: 12px 16px;
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--c-green);
  list-style: none;
  position: relative;
}

.page-home .ph-league-filter summary::-webkit-details-marker {
  display: none;
}

.page-home .ph-league-filter summary::after {
  content: "＋";
  margin-left: 6px;
  color: var(--c-green);
}

.page-home .ph-league-filter[open] summary::after {
  content: "－";
}

.page-home .ph-league-filter ul {
  margin: 0;
  padding: 0 16px 14px;
  list-style: none;
}

.page-home .ph-league-filter li {
  padding: 6px 0;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.78);
}

.page-home .ph-report-features {
  list-style: none;
  padding: 0;
  margin: 0 0 18px;
}

.page-home .ph-report-features li {
  padding: 6px 0 6px 18px;
  position: relative;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
}

.page-home .ph-report-features li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 8px;
  height: 8px;
  background: var(--c-green);
  transform: translateY(-50%);
}

.page-home .ph-report-visual {
  border: 1px solid rgba(255, 255, 255, 0.16);
  clip-path: polygon(10px 0, 100% 0, 100% 100%, 0 calc(100% - 10px));
  background: var(--ph-navy);
  padding: 12px;
  transition: box-shadow var(--ease);
}

.page-home .ph-report-visual:hover {
  box-shadow: 10px 10px 0 rgba(0, 255, 136, 0.18);
}

.page-home .ph-report-visual img {
  aspect-ratio: 800 / 500;
}

.page-home .ph-archive-visual {
  border: 1px solid var(--ph-ink);
  box-shadow: 8px 8px 0 rgba(26, 42, 58, 0.12);
  background: var(--c-white);
  padding: 8px;
  transition: box-shadow var(--ease);
}

.page-home .ph-archive-visual:hover {
  box-shadow: 12px 12px 0 rgba(0, 255, 136, 0.35);
}

.page-home .ph-archive-visual img {
  aspect-ratio: 900 / 600;
}

.page-home .ph-upgrade {
  background: var(--ph-dark);
  color: var(--c-white);
  padding: clamp(48px, 7vw, 88px) var(--pad);
  position: relative;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 40px 40px;
}

.page-home .ph-upgrade .ph-section-num {
  color: rgba(255, 255, 255, 0.08);
}

.page-home .ph-upgrade h2 {
  color: var(--c-white);
}

.page-home .ph-upgrade-head p:not(.ph-kicker) {
  color: rgba(255, 255, 255, 0.75);
  max-width: 720px;
  font-size: 15px;
  line-height: 1.8;
  margin: 0 0 10px;
}

.page-home .ph-upgrade-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
  margin-top: 28px;
}

.page-home .ph-upgrade-item {
  border: 1px solid var(--ph-line);
  background: var(--ph-navy);
  padding: 24px 22px;
  transition: border-color var(--ease), transform var(--ease);
}

.page-home .ph-upgrade-item::before {
  content: "";
  display: block;
  width: 36px;
  height: 4px;
  background: var(--c-green);
  margin-bottom: 14px;
}

.page-home .ph-upgrade-item:hover {
  border-color: var(--c-green);
  transform: translateY(-2px);
}

.page-home .ph-upgrade-item h3 {
  font-family: var(--font-display);
  font-size: 18px;
  color: var(--c-green);
  margin: 0 0 10px;
}

.page-home .ph-upgrade-item p {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.76);
  margin: 0;
}

.page-home .ph-upgrade-links {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.page-home .ph-upgrade-links a {
  color: var(--c-white);
  font-size: 14px;
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  padding-bottom: 4px;
  transition: color var(--ease), border-color var(--ease);
}

.page-home .ph-upgrade-links a:hover {
  color: var(--c-green);
  border-bottom-color: var(--c-green);
}

@media (min-width: 640px) {
  .page-home .ph-injury-stats {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .page-home .ph-breadcrumb {
    margin-bottom: 32px;
  }
}

@media (min-width: 960px) {
  .page-home .ph-hero {
    padding-top: calc(var(--pad) * 1.4);
  }

  .page-home .ph-hero-grid {
    grid-template-columns: minmax(0, 1.8fr) minmax(0, 1fr);
    gap: clamp(22px, 3vw, 44px);
  }

  .page-home .ph-hero-visual {
    margin-top: 36px;
  }

  .page-home .ph-db-grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.25fr);
    gap: clamp(32px, 5vw, 64px);
  }

  .page-home .ph-report-grid {
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
    gap: clamp(32px, 5vw, 64px);
  }

  .page-home .ph-archive-grid {
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.9fr);
    gap: clamp(32px, 5vw, 64px);
  }

  .page-home .ph-section-num {
    margin-bottom: 0;
  }
}
