/*
 * NxtGen Review — trust.css
 * Section 3: Trust (3 Charts — Persona Fit, Radar, Lenses)
 */

#nxrv-page .nxrv-chart-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 20px;
}

#nxrv-page .nxrv-chart-card {
  background: #ffffff;
  border: 1px solid #E5E7EB;
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 4px 14px rgba(15,23,42,0.04);
}

#nxrv-page .nxrv-chart-badge {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #9CA3AF;
  margin-bottom: 8px;
}

#nxrv-page .nxrv-chart-title {
  font-size: 1rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 16px;
  line-height: 1.35;
}

#nxrv-page .nxrv-bar-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

#nxrv-page .nxrv-bar-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

#nxrv-page .nxrv-bar-label {
  font-size: 0.8rem;
  color: #6B7280;
  width: 96px;
  flex-shrink: 0;
  line-height: 1.3;
}

#nxrv-page .nxrv-bar-val {
  font-size: 0.82rem;
  font-weight: 600;
  color: #374151;
  width: 28px;
  text-align: right;
  flex-shrink: 0;
}

#nxrv-page .nxrv-radar {
  display: block;
  margin: 6px auto 8px;
  width: 100%;
  max-width: 260px;
  overflow: visible;
}

#nxrv-page .nxrv-chart-divider {
  height: 1px;
  background: #E5E7EB;
  margin: 14px 0;
}

#nxrv-page .nxrv-chart-insight strong {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #374151;
  margin-bottom: 4px;
}

#nxrv-page .nxrv-chart-insight p {
  font-size: 0.83rem;
  color: #6B7280;
  line-height: 1.55;
  margin: 0;
}

#nxrv-page .nxrv-dash-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.875rem;
  font-weight: 600;
  color: #6C63FF;
  text-decoration: none;
  border-bottom: 1px solid rgba(108,99,255,0.3);
  padding-bottom: 1px;
  transition: border-color 140ms;
}

#nxrv-page .nxrv-dash-link:hover {
  border-color: #6C63FF;
  text-decoration: none;
}

@media (max-width: 900px) {
  #nxrv-page .nxrv-chart-grid {
    grid-template-columns: 1fr;
  }
}
