/* ===== PROFILE SCREEN ===== */
.profile { gap: 16px; }

.profile__header {
    padding: 8px 0;
}

.profile__title {
    font-size: 24px;
    font-weight: 800;
    margin-top: 4px;
}

.profile__actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.profile__section-title {
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
    margin-top: 8px;
}

.profile-results-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.profile-result-card {
    padding: 18px 20px;
    cursor: pointer;
    animation: slideUp 0.4s ease both;
}

.profile-result-card:hover {
    border-color: var(--glass-border-hover);
}

.profile-result-card__header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 12px;
}

.profile-result-card__emoji {
    font-size: 32px;
    flex-shrink: 0;
}

.profile-result-card__info {
    flex: 1;
    min-width: 0;
}

.profile-result-card__style {
    font-size: 15px;
    font-weight: 700;
    color: var(--text);
}

.profile-result-card__date {
    font-size: 12px;
    color: var(--text-muted);
    margin-top: 2px;
}

.profile-result-card__scores {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.mini-score {
    display: flex;
    align-items: center;
    gap: 8px;
}

.mini-score__bar {
    flex: 1;
    height: 4px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 100px;
    overflow: hidden;
}

.mini-score__fill {
    height: 100%;
    border-radius: 100px;
    transition: width 0.8s ease;
}

.mini-score__fill--secure   { background: linear-gradient(90deg, #4ADE80, #22C55E); }
.mini-score__fill--anxious  { background: linear-gradient(90deg, #FB923C, #F97316); }
.mini-score__fill--avoidant { background: linear-gradient(90deg, #60A5FA, #3B82F6); }
.mini-score__fill--fearful  { background: linear-gradient(90deg, #F87171, #EF4444); }

.mini-score__val {
    font-size: 11px;
    font-weight: 600;
    color: var(--text-muted);
    width: 32px;
    text-align: right;
}

.profile-progress__card {
    padding: 16px 20px;
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-secondary);
}

.profile-empty {
    text-align: center;
    padding: 32px 20px;
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.7;
}

.profile-loading {
    text-align: center;
    padding: 24px;
    color: var(--text-muted);
    font-size: 14px;
}

.profile-error {
    text-align: center;
    padding: 24px;
    color: var(--red);
    font-size: 14px;
}
