.page-home {
  --home-glow: rgba(57, 255, 20, 0.14);
  --home-glow-strong: rgba(57, 255, 20, 0.26);
  --home-orange-glow: rgba(255, 107, 0, 0.16);
  --home-grad-end: #0B2B5C;
  --home-grad-blue: linear-gradient(145deg, var(--c-deep) 0%, var(--c-deep-2) 58%, var(--home-grad-end) 100%);
  --home-soft-panel: rgba(255, 255, 255, 0.09);
}

.page-home .ph-home-hero {
  position: relative;
  overflow: hidden;
  padding: 28px 0 72px;
  background: linear-gradient(135deg, var(--c-deep) 0%, var(--c-deep-2) 55%, var(--home-grad-end) 100%);
  color: var(--c-white);
}

.page-home .hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.page-home .hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.2;
}

.page-home .hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(11, 27, 61, 0) 0%, rgba(11, 27, 61, 0.35) 60%, rgba(11, 27, 61, 0.85) 100%);
}

.page-home .hero-bg + .container {
  position: relative;
  z-index: 1;
}

.page-home .breadcrumb ol {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0;
  margin: 0 0 24px;
  list-style: none;
  font-size: 13px;
}

.page-home .breadcrumb [aria-current="page"] {
  color: rgba(255, 255, 255, 0.72);
}

.page-home .hero-layout {
  display: grid;
  gap: 32px;
  padding-top: 16px;
}

.page-home .hero-copy h1 {
  font-family: var(--font-headline);
  font-size: clamp(34px, 7vw, 60px);
  line-height: 1.12;
  letter-spacing: 0.01em;
  margin: 14px 0 16px;
}

.page-home .hero-copy h1 em {
  display: block;
  font-style: normal;
  font-size: 0.5em;
  font-weight: 400;
  color: var(--c-cyan);
  letter-spacing: 0.2em;
  margin-top: 10px;
}

.page-home .hero-lead {
  margin: 0 0 24px;
  font-size: 16px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.84);
  max-width: 34em;
}

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

.page-home .hero-bento {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 36px;
}

.page-home .hero-score,
.page-home .hero-report {
  grid-column: 1 / -1;
}

.page-home .hero-score {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 16px;
  padding: 22px;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.04));
  border: 1px solid rgba(57, 255, 20, 0.28);
  border-radius: var(--radius-lg);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.28);
}

.page-home .score-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 10px;
}

.page-home .score-round {
  font-size: 12px;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.72);
}

.page-home .score-board {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 10px;
}

.page-home .team-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 12px 8px;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  transition: background var(--duration) var(--ease), border-color var(--duration) var(--ease);
}

.page-home .team-col:hover,
.page-home .team-col:focus-within {
  background: var(--home-glow);
  border-color: rgba(57, 255, 20, 0.35);
}

.page-home .team-name {
  font-weight: 700;
  font-size: 15px;
  white-space: nowrap;
}

.page-home .score-main {
  font-family: var(--font-mono);
  font-size: 52px;
  line-height: 1;
  color: var(--c-neon);
}

.page-home .team-stats {
  display: flex;
  gap: 10px;
}

.page-home .team-stats span {
  display: flex;
  align-items: baseline;
  gap: 4px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.72);
}

.page-home .team-stats b {
  font-family: var(--font-mono);
  font-size: 15px;
  font-weight: 500;
  color: var(--c-white);
}

.page-home .score-divider {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding-bottom: 6px;
}

.page-home .divider-label {
  font-size: 10px;
  letter-spacing: 0.18em;
  color: rgba(255, 255, 255, 0.6);
}

.page-home .divider-num {
  font-family: var(--font-mono);
  font-size: 26px;
  line-height: 1;
  color: var(--c-cyan);
}

.page-home .hero-report {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--c-line);
  border-radius: var(--radius-lg);
}

.page-home .report-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

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

.page-home .report-mini {
  display: flex;
  gap: 10px;
}

.page-home .report-mini div {
  display: flex;
  align-items: baseline;
  gap: 6px;
  padding: 8px 12px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-sm);
}

.page-home .report-mini .data-num {
  font-family: var(--font-mono);
  font-size: 20px;
  color: var(--c-neon);
}

.page-home .report-mini span:last-child {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.72);
}

.page-home .hero-mini {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  text-align: center;
  padding: 20px 14px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid var(--c-line);
  border-radius: var(--radius-lg);
}

.page-home .hero-mini .data-num {
  font-family: var(--font-mono);
  font-size: 36px;
  line-height: 1;
  color: var(--c-neon);
}

.page-home .mini-label {
  font-size: 12px;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.72);
}

.page-home .ph-feature {
  background: var(--c-bg);
  padding: 64px 0 72px;
}

.page-home .section-head {
  max-width: 720px;
  margin-bottom: 40px;
}

.page-home .section-desc {
  margin-top: 10px;
  font-size: 15px;
  line-height: 1.7;
  color: var(--c-mute);
}

.page-home .feature-grid {
  display: grid;
  gap: 32px;
}

.page-home .feature-visual img {
  width: 100%;
  height: auto;
  border: 1px solid #D9E1EE;
  border-radius: var(--radius-lg);
  box-shadow: var(--sh-card);
  background: var(--c-white);
}

.page-home .feature-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.page-home .feature-item {
  display: flex;
  gap: 18px;
  padding: 22px 20px;
  background: var(--c-white);
  border: 1px solid #D9E1EE;
  border-radius: var(--radius-lg);
  box-shadow: var(--sh-card);
  transition: transform var(--duration) var(--ease), box-shadow var(--duration) var(--ease);
}

.page-home .feature-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(11, 27, 61, 0.14);
}

.page-home .feature-num {
  font-family: var(--font-mono);
  font-size: 24px;
  color: var(--c-orange);
}

.page-home .feature-text h3 {
  margin: 0 0 6px;
  font-size: 18px;
  line-height: 1.3;
}

.page-home .feature-text p {
  margin: 0;
  font-size: 14px;
  line-height: 1.65;
  color: var(--c-mute);
}

.page-home .ph-multi {
  position: relative;
  padding: 64px 0 76px;
  background: var(--c-deep);
  color: var(--c-white);
  overflow: hidden;
}

.page-home .multi-layout {
  display: grid;
  gap: 40px;
}

.page-home .multi-copy h2 {
  margin: 12px 0 14px;
  font-size: clamp(26px, 4vw, 40px);
  line-height: 1.2;
}

.page-home .multi-desc {
  margin: 0 0 28px;
  font-size: 15px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.78);
}

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

.page-home .stat-num-block {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 14px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid var(--c-line);
  border-radius: var(--radius-sm);
}

.page-home .stat-num-block .data-num {
  font-family: var(--font-mono);
  font-size: 22px;
  color: var(--c-neon);
}

.page-home .stat-num-block span:last-child {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.75);
}

.page-home .multi-visual {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.page-home .device-card {
  max-width: 420px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--c-line);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.page-home .device-card--alt {
  align-self: flex-end;
}

.page-home .device-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 14px;
  background: rgba(0, 0, 0, 0.28);
}

.page-home .device-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--c-mute);
}

.page-home .device-dot:first-child {
  background: var(--c-orange);
}

.page-home .device-dot:nth-child(2) {
  background: var(--c-neon);
}

.page-home .device-body {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 28px 16px 24px;
}

.page-home .device-label {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
}

.page-home .device-score {
  font-family: var(--font-mono);
  font-size: 46px;
  letter-spacing: 0.03em;
  color: var(--c-cyan);
}

.page-home .device-tag {
  padding: 4px 12px;
  font-size: 12px;
  border: 1px solid rgba(57, 255, 20, 0.3);
  border-radius: var(--radius-pill);
  background: var(--home-glow);
  color: var(--c-neon);
}

.page-home .ph-report {
  background: var(--c-white);
  padding: 64px 0 72px;
}

.page-home .report-layout {
  display: grid;
  gap: 32px;
}

.page-home .report-chart img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--sh-card);
}

.page-home .report-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.page-home .report-item {
  background: var(--c-bg);
  border: 1px solid #DCE3EE;
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.page-home .report-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px;
  cursor: pointer;
  list-style: none;
  transition: background var(--duration) var(--ease);
}

.page-home .report-item summary::-webkit-details-marker {
  display: none;
}

.page-home .report-item summary:hover {
  background: #EDF2F7;
}

.page-home .report-title {
  font-size: 15px;
  font-weight: 600;
}

.page-home .report-item p {
  margin: 0;
  padding: 0 16px 16px;
  font-size: 14px;
  line-height: 1.65;
  color: var(--c-mute);
}

.page-home .report-item[open] p {
  animation: ph-home-rise 0.3s var(--ease);
}

@keyframes ph-home-rise {
  from {
    opacity: 0;
    transform: translateY(6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.page-home .report-more {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.page-home .ph-version {
  position: relative;
  padding: 64px 0 72px;
  background: var(--home-grad-blue);
  color: var(--c-white);
  overflow: hidden;
}

.page-home .version-grid {
  display: grid;
  gap: 36px;
}

.page-home .version-copy h2 {
  margin: 12px 0 14px;
  font-size: clamp(26px, 4vw, 40px);
  line-height: 1.2;
}

.page-home .version-desc {
  margin: 0 0 28px;
  font-size: 15px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.78);
}

.page-home .version-timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 24px;
}

.page-home .timeline-item {
  position: relative;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 10px 0 10px 24px;
  border-left: 2px solid rgba(57, 255, 20, 0.35);
}

.page-home .timeline-item::before {
  content: "";
  position: absolute;
  left: -6px;
  top: 50%;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--c-neon);
  transform: translateY(-50%);
}

.page-home .timeline-item .data-num {
  min-width: 60px;
  font-family: var(--font-mono);
  font-size: 20px;
  color: var(--c-cyan);
}

.page-home .timeline-label {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.9);
}

.page-home .version-awards {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
}

.page-home .version-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.page-home .version-visual img {
  width: 100%;
  height: auto;
  border: 1px solid var(--c-line);
  border-radius: var(--radius-lg);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.24);
}

@media (min-width: 768px) {
  .page-home .multi-visual {
    flex-direction: row;
    align-items: center;
  }

  .page-home .device-card--alt {
    margin-top: 24px;
  }
}

@media (min-width: 992px) {
  .page-home .hero-layout {
    grid-template-columns: 1fr 1.15fr;
    gap: 48px;
    align-items: center;
    padding-top: 24px;
  }

  .page-home .hero-bento {
    grid-template-columns: 1.4fr 1fr;
    margin-top: 0;
  }

  .page-home .hero-score {
    grid-column: 1;
    grid-row: 1 / span 3;
  }

  .page-home .hero-report {
    grid-column: 2;
    grid-row: 1;
  }

  .page-home .hero-bento > :nth-child(3) {
    grid-column: 2;
    grid-row: 2;
  }

  .page-home .hero-bento > :nth-child(4) {
    grid-column: 2;
    grid-row: 3;
  }

  .page-home .feature-grid {
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }

  .page-home .multi-layout {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 48px;
    align-items: center;
  }

  .page-home .report-layout {
    grid-template-columns: 0.9fr 1.1fr;
    align-items: start;
  }

  .page-home .version-grid {
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: center;
  }
}
