.asc-card{
background:#fff;
border-radius:12px;
padding:20px;
box-shadow:0 5px 20px rgba(0,0,0,.08);
margin-bottom:20px
}

.asc-grid{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:20px
}

.asc-score-circle{
width:140px;
height:140px;
border-radius:50%;
display:flex;
align-items:center;
justify-content:center;
font-size:30px;
font-weight:700;
background:conic-gradient(#4CAF50 0deg,#4CAF50 var(--deg),#eee var(--deg))
}

.asc-bar{
background:#eee;
height:12px;
border-radius:8px;
overflow:hidden;
margin-top:6px
}
.asc-bar-fill{
height:12px;
background:linear-gradient(90deg,#4CAF50,#8BC34A)
}

.asc-btn{
background:#4CAF50;
color:#fff;
padding:12px 25px;
border:none;
border-radius:8px;
cursor:pointer
}