/* MODEL */
.model-highlight {
  border: 1px solid rgba(123,0,255,0.3);
  padding: 40px;
  background: linear-gradient(135deg, rgba(123,0,255,0.08), rgba(255,0,200,0.03));
  position: relative;
  overflow: hidden;
}
.model-highlight::before {
  content: '';
  position: absolute;
  top: -50%; left: -50%;
  width: 200%; height: 200%;
  background: conic-gradient(from 0deg, transparent 340deg, rgba(123,0,255,0.1) 360deg);
  animation: rotate-glow 8s linear infinite;
}
@keyframes rotate-glow {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
.model-highlight > * { position: relative; z-index: 1; }

.model-percent {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 72px;
  line-height: 1;
  background: linear-gradient(135deg, var(--purple-bright), var(--magenta));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.model-label {
  font-family: 'Space Mono', monospace;
  font-size: 11px;
  letter-spacing: 3px;
  color: var(--gray);
  text-transform: uppercase;
  margin-bottom: 16px;
}
.model-desc {
  font-size: 15px;
  color: rgba(255,255,255,0.6);
  line-height: 1.6;
  font-weight: 300;
}
