.hero-product-shell {
  position: relative;
}

.hero-product-glow {
  position: absolute;
  inset: 8% 10% 10% 10%;
  border-radius: 999px;
  background:
    radial-gradient(circle at top, rgba(240, 184, 102, 0.3), transparent 52%),
    radial-gradient(circle at bottom left, rgba(125, 184, 240, 0.2), transparent 50%);
  filter: blur(32px);
  opacity: 0.95;
}

.hero-product-stage {
  position: relative;
  min-height: 420px;
}

.hero-panel {
  position: absolute;
  border-radius: 24px;
  border: 1px solid rgba(240, 184, 102, 0.18);
  background: linear-gradient(180deg, rgba(23, 38, 66, 0.96), rgba(10, 17, 32, 0.94));
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.hero-panel-main {
  inset: 12% 7% 11% 7%;
  padding: 24px 22px;
}

.hero-panel-report {
  top: 0;
  right: 0;
  width: 58%;
  padding: 16px 18px;
  transform: rotate(4deg);
}

.hero-panel-team {
  left: 0;
  bottom: 0;
  width: 54%;
  padding: 16px 18px;
  transform: rotate(-4deg);
}

.hero-panel-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.hero-brow {
  margin: 0 0 4px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(240, 184, 102, 0.72);
}

.hero-title {
  margin: 0;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.35;
  color: #f8fbff;
}

.hero-status {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 6px 10px;
  border: 1px solid rgba(240, 184, 102, 0.18);
  background: rgba(240, 184, 102, 0.08);
  font-size: 11px;
  font-weight: 600;
  color: #f6ce89;
  white-space: nowrap;
}

.hero-score-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 18px;
}

.hero-score-box {
  border-radius: 14px;
  padding: 10px 12px;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.hero-score-box span {
  display: block;
  font-size: 10px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(179, 191, 209, 0.72);
}

.hero-score-box strong {
  display: block;
  margin-top: 4px;
  font-size: 15px;
  line-height: 1.2;
  color: #f8fbff;
}

.hero-meter-list {
  display: grid;
  gap: 12px;
}

.hero-meter-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 6px;
  font-size: 12px;
  color: #dbe5f5;
}

.hero-meter-track {
  height: 8px;
  border-radius: 999px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.08);
}

.hero-meter-fill {
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, rgba(125, 184, 240, 0.85), rgba(240, 184, 102, 0.95));
}

.hero-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-chip {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 6px 10px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 11px;
  font-weight: 500;
  color: #dbe5f5;
}

.hero-mini-title {
  margin: 0 0 12px;
  font-size: 0.96rem;
  font-weight: 700;
  line-height: 1.35;
  color: #f8fbff;
}

.hero-mini-list {
  display: grid;
  gap: 8px;
}

.hero-mini-row {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: #dbe5f5;
}

.hero-mini-dot {
  width: 6px;
  height: 6px;
  flex: 0 0 auto;
  border-radius: 999px;
  background: #f0b866;
  opacity: 0.85;
}

.hero-team-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.hero-team-cell {
  border-radius: 12px;
  padding: 10px;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.07);
}

.hero-team-name {
  display: block;
  font-size: 11px;
  font-weight: 600;
  color: #f1f5fb;
}

.hero-team-role {
  display: block;
  margin-top: 2px;
  font-size: 10px;
  color: rgba(179, 191, 209, 0.76);
}

@media (max-width: 1023px) {
  .hero-product-stage {
    min-height: 380px;
  }

  .hero-panel-report {
    width: 60%;
  }

  .hero-panel-team {
    width: 56%;
  }
}

@media (max-width: 640px) {
  .hero-product-stage {
    min-height: 330px;
  }

  .hero-product-glow {
    inset: 10% 6% 8% 6%;
  }

  .hero-panel-main {
    inset: 14% 5% 12% 5%;
    padding: 18px 16px;
  }

  .hero-panel-report,
  .hero-panel-team {
    padding: 12px 14px;
  }

  .hero-score-grid {
    gap: 8px;
  }

  .hero-score-box {
    padding: 8px 10px;
  }

  .hero-score-box strong {
    font-size: 13px;
  }

  .hero-brow,
  .hero-status,
  .hero-chip,
  .hero-mini-row,
  .hero-team-name,
  .hero-team-role,
  .hero-meter-head {
    font-size: 10px;
  }

  .hero-title,
  .hero-mini-title {
    font-size: 0.88rem;
  }
}
